| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 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 | 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 BASE_I18N_MESSAGE_FORMATTER_H_ | 5 #ifndef BASE_I18N_MESSAGE_FORMATTER_H_ |
| 6 #define BASE_I18N_MESSAGE_FORMATTER_H_ | 6 #define BASE_I18N_MESSAGE_FORMATTER_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "base/i18n/base_i18n_export.h" | 11 #include "base/i18n/base_i18n_export.h" |
| 12 #include "base/macros.h" |
| 12 #include "base/memory/scoped_ptr.h" | 13 #include "base/memory/scoped_ptr.h" |
| 13 #include "base/strings/string16.h" | 14 #include "base/strings/string16.h" |
| 14 #include "base/strings/string_piece.h" | 15 #include "base/strings/string_piece.h" |
| 15 #include "third_party/icu/source/common/unicode/uversion.h" | 16 #include "third_party/icu/source/common/unicode/uversion.h" |
| 16 | 17 |
| 17 U_NAMESPACE_BEGIN | 18 U_NAMESPACE_BEGIN |
| 18 class Formattable; | 19 class Formattable; |
| 19 U_NAMESPACE_END | 20 U_NAMESPACE_END |
| 20 | 21 |
| 21 namespace base { | 22 namespace base { |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 | 103 |
| 103 private: | 104 private: |
| 104 MessageFormatter() {} | 105 MessageFormatter() {} |
| 105 DISALLOW_COPY_AND_ASSIGN(MessageFormatter); | 106 DISALLOW_COPY_AND_ASSIGN(MessageFormatter); |
| 106 }; | 107 }; |
| 107 | 108 |
| 108 } // namespace i18n | 109 } // namespace i18n |
| 109 } // namespace base | 110 } // namespace base |
| 110 | 111 |
| 111 #endif // BASE_I18N_MESSAGE_FORMATTER_H_ | 112 #endif // BASE_I18N_MESSAGE_FORMATTER_H_ |
| OLD | NEW |