OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef LayoutLocale_h | 5 #ifndef LayoutLocale_h |
6 #define LayoutLocale_h | 6 #define LayoutLocale_h |
7 | 7 |
8 #include "platform/PlatformExport.h" | 8 #include "platform/PlatformExport.h" |
9 #include "platform/text/Hyphenation.h" | 9 #include "platform/text/Hyphenation.h" |
10 #include "wtf/Forward.h" | 10 #include "platform/wtf/Forward.h" |
11 #include "wtf/RefCounted.h" | 11 #include "platform/wtf/RefCounted.h" |
12 #include "wtf/text/AtomicString.h" | 12 #include "platform/wtf/text/AtomicString.h" |
13 | 13 |
14 #include <unicode/uscript.h> | 14 #include <unicode/uscript.h> |
15 | 15 |
16 struct hb_language_impl_t; | 16 struct hb_language_impl_t; |
17 | 17 |
18 namespace blink { | 18 namespace blink { |
19 | 19 |
20 class Hyphenation; | 20 class Hyphenation; |
21 | 21 |
22 enum class LineBreakIteratorMode { kDefault, kNormal, kStrict, kLoose }; | 22 enum class LineBreakIteratorMode { kDefault, kNormal, kStrict, kLoose }; |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
87 | 87 |
88 static const LayoutLocale* default_; | 88 static const LayoutLocale* default_; |
89 static const LayoutLocale* system_; | 89 static const LayoutLocale* system_; |
90 static const LayoutLocale* default_for_han_; | 90 static const LayoutLocale* default_for_han_; |
91 static bool default_for_han_computed_; | 91 static bool default_for_han_computed_; |
92 }; | 92 }; |
93 | 93 |
94 } // namespace blink | 94 } // namespace blink |
95 | 95 |
96 #endif // LayoutLocale_h | 96 #endif // LayoutLocale_h |
OLD | NEW |