| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 APP_L10N_UTIL_MAC_H_ | 5 #ifndef APP_L10N_UTIL_MAC_H_ |
| 6 #define APP_L10N_UTIL_MAC_H_ | 6 #define APP_L10N_UTIL_MAC_H_ |
| 7 | 7 |
| 8 #include "app/l10n_util.h" | 8 #include "app/l10n_util.h" |
| 9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
| 10 #include "base/string16.h" | 10 #include "base/string16.h" |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 NSString* GetNSStringFWithFixup(int message_id, | 56 NSString* GetNSStringFWithFixup(int message_id, |
| 57 const string16& a, | 57 const string16& a, |
| 58 const string16& b, | 58 const string16& b, |
| 59 const string16& c); | 59 const string16& c); |
| 60 NSString* GetNSStringFWithFixup(int message_id, | 60 NSString* GetNSStringFWithFixup(int message_id, |
| 61 const string16& a, | 61 const string16& a, |
| 62 const string16& b, | 62 const string16& b, |
| 63 const string16& c, | 63 const string16& c, |
| 64 const string16& d); | 64 const string16& d); |
| 65 | 65 |
| 66 // Support the override of the locale with the value from Cocoa. |
| 67 void OverrideLocaleWithCocoaLocale(); |
| 68 const std::string& GetLocaleOverride(); |
| 69 |
| 66 } // namespace l10n_util | 70 } // namespace l10n_util |
| 67 | 71 |
| 68 #endif // APP_L10N_UTIL_MAC_H_ | 72 #endif // APP_L10N_UTIL_MAC_H_ |
| OLD | NEW |