| OLD | NEW |
| 1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 the V8 project 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 // limitations under the License. | 4 // limitations under the License. |
| 5 | 5 |
| 6 #ifndef V8_I18N_H_ | 6 #ifndef V8_I18N_H_ |
| 7 #define V8_I18N_H_ | 7 #define V8_I18N_H_ |
| 8 | 8 |
| 9 #include "src/v8.h" | 9 #include "src/handles.h" |
| 10 #include "unicode/uversion.h" | 10 #include "unicode/uversion.h" |
| 11 | 11 |
| 12 namespace U_ICU_NAMESPACE { | 12 namespace U_ICU_NAMESPACE { |
| 13 class BreakIterator; | 13 class BreakIterator; |
| 14 class Collator; | 14 class Collator; |
| 15 class DecimalFormat; | 15 class DecimalFormat; |
| 16 class SimpleDateFormat; | 16 class SimpleDateFormat; |
| 17 } | 17 } |
| 18 | 18 |
| 19 namespace v8 { | 19 namespace v8 { |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 121 static void DeleteBreakIterator( | 121 static void DeleteBreakIterator( |
| 122 const v8::WeakCallbackData<v8::Value, void>& data); | 122 const v8::WeakCallbackData<v8::Value, void>& data); |
| 123 | 123 |
| 124 private: | 124 private: |
| 125 BreakIterator(); | 125 BreakIterator(); |
| 126 }; | 126 }; |
| 127 | 127 |
| 128 } } // namespace v8::internal | 128 } } // namespace v8::internal |
| 129 | 129 |
| 130 #endif // V8_I18N_H_ | 130 #endif // V8_I18N_H_ |
| OLD | NEW |