OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 UI_BASE_L10N_L10N_UTIL_MAC_H_ | 5 #ifndef UI_BASE_L10N_L10N_UTIL_MAC_H_ |
6 #define UI_BASE_L10N_L10N_UTIL_MAC_H_ | 6 #define UI_BASE_L10N_L10N_UTIL_MAC_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
12 #include "base/string16.h" | 12 #include "base/strings/string16.h" |
13 #include "ui/base/ui_export.h" | 13 #include "ui/base/ui_export.h" |
14 | 14 |
15 #ifdef __OBJC__ | 15 #ifdef __OBJC__ |
16 @class NSString; | 16 @class NSString; |
17 #else | 17 #else |
18 class NSString; | 18 class NSString; |
19 #endif | 19 #endif |
20 | 20 |
21 namespace l10n_util { | 21 namespace l10n_util { |
22 | 22 |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
73 const string16& c, | 73 const string16& c, |
74 const string16& d); | 74 const string16& d); |
75 | 75 |
76 // Support the override of the locale with the value from Cocoa. | 76 // Support the override of the locale with the value from Cocoa. |
77 UI_EXPORT void OverrideLocaleWithCocoaLocale(); | 77 UI_EXPORT void OverrideLocaleWithCocoaLocale(); |
78 UI_EXPORT const std::string& GetLocaleOverride(); | 78 UI_EXPORT const std::string& GetLocaleOverride(); |
79 | 79 |
80 } // namespace l10n_util | 80 } // namespace l10n_util |
81 | 81 |
82 #endif // UI_BASE_L10N_L10N_UTIL_MAC_H_ | 82 #endif // UI_BASE_L10N_L10N_UTIL_MAC_H_ |
OLD | NEW |