Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(350)

Side by Side Diff: base/i18n/message_formatter.h

Issue 1542323002: Switch to standard integer types in base/i18n/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: header Created 4 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « base/i18n/icu_util.cc ('k') | base/i18n/number_formatting.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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_
OLDNEW
« no previous file with comments | « base/i18n/icu_util.cc ('k') | base/i18n/number_formatting.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698