encoding.h 676 B

12345678910111213141516171819202122
  1. // Copyright 2015 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. #ifndef THIRD_PARTY_BLINK_RENDERER_MODULES_ENCODING_ENCODING_H_
  5. #define THIRD_PARTY_BLINK_RENDERER_MODULES_ENCODING_ENCODING_H_
  6. #include "third_party/blink/renderer/platform/wtf/text/unicode.h"
  7. namespace blink {
  8. namespace encoding {
  9. // The Encoding Standard has a definition of whitespace that differs from
  10. // WTF::isWhiteSpace() (it excludes vertical tab).
  11. bool IsASCIIWhiteSpace(UChar);
  12. } // namespace encoding
  13. } // namespace blink
  14. #endif // THIRD_PARTY_BLINK_RENDERER_MODULES_ENCODING_ENCODING_H_