OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #include "chrome/browser/chromeos/locale_change_guard.h" | 5 #include "chrome/browser/chromeos/locale_change_guard.h" |
6 | 6 |
7 #include "ash/shell.h" | 7 #include "ash/shell.h" |
8 #include "ash/system/tray/system_tray.h" | 8 #include "ash/system/tray/system_tray.h" |
9 #include "ash/system/tray/system_tray_notifier.h" | 9 #include "ash/system/tray/system_tray_notifier.h" |
10 #include "base/bind.h" | 10 #include "base/bind.h" |
11 #include "base/prefs/pref_service.h" | 11 #include "base/prefs/pref_service.h" |
12 #include "base/strings/utf_string_conversions.h" | 12 #include "base/strings/utf_string_conversions.h" |
13 #include "chrome/app/chrome_command_ids.h" | 13 #include "chrome/app/chrome_command_ids.h" |
14 #include "chrome/browser/browser_process.h" | 14 #include "chrome/browser/browser_process.h" |
15 #include "chrome/browser/chrome_notification_types.h" | 15 #include "chrome/browser/chrome_notification_types.h" |
16 #include "chrome/browser/chromeos/settings/device_settings_service.h" | 16 #include "chrome/browser/chromeos/settings/device_settings_service.h" |
17 #include "chrome/browser/lifetime/application_lifetime.h" | 17 #include "chrome/browser/lifetime/application_lifetime.h" |
18 #include "chrome/browser/profiles/profile.h" | 18 #include "chrome/browser/profiles/profile.h" |
19 #include "chrome/browser/ui/browser.h" | 19 #include "chrome/browser/ui/browser.h" |
20 #include "chrome/browser/ui/browser_commands.h" | 20 #include "chrome/browser/ui/browser_commands.h" |
21 #include "chrome/browser/ui/host_desktop.h" | 21 #include "chrome/browser/ui/host_desktop.h" |
22 #include "chrome/common/pref_names.h" | 22 #include "chrome/common/pref_names.h" |
| 23 #include "chrome/grit/generated_resources.h" |
| 24 #include "chrome/grit/theme_resources.h" |
23 #include "content/public/browser/notification_service.h" | 25 #include "content/public/browser/notification_service.h" |
24 #include "content/public/browser/notification_source.h" | 26 #include "content/public/browser/notification_source.h" |
25 #include "content/public/browser/user_metrics.h" | 27 #include "content/public/browser/user_metrics.h" |
26 #include "content/public/browser/web_contents.h" | 28 #include "content/public/browser/web_contents.h" |
27 #include "grit/generated_resources.h" | |
28 #include "grit/theme_resources.h" | |
29 #include "ui/base/l10n/l10n_util.h" | 29 #include "ui/base/l10n/l10n_util.h" |
30 | 30 |
31 using base::UserMetricsAction; | 31 using base::UserMetricsAction; |
32 using content::WebContents; | 32 using content::WebContents; |
33 | 33 |
34 namespace chromeos { | 34 namespace chromeos { |
35 | 35 |
36 LocaleChangeGuard::LocaleChangeGuard(Profile* profile) | 36 LocaleChangeGuard::LocaleChangeGuard(Profile* profile) |
37 : profile_(profile), | 37 : profile_(profile), |
38 reverted_(false), | 38 reverted_(false), |
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
206 title_text_ = l10n_util::GetStringUTF16( | 206 title_text_ = l10n_util::GetStringUTF16( |
207 IDS_OPTIONS_SETTINGS_SECTION_TITLE_LANGUAGE); | 207 IDS_OPTIONS_SETTINGS_SECTION_TITLE_LANGUAGE); |
208 message_text_ = l10n_util::GetStringFUTF16( | 208 message_text_ = l10n_util::GetStringFUTF16( |
209 IDS_LOCALE_CHANGE_MESSAGE, from, to); | 209 IDS_LOCALE_CHANGE_MESSAGE, from, to); |
210 revert_link_text_ = l10n_util::GetStringFUTF16( | 210 revert_link_text_ = l10n_util::GetStringFUTF16( |
211 IDS_LOCALE_CHANGE_REVERT_MESSAGE, from); | 211 IDS_LOCALE_CHANGE_REVERT_MESSAGE, from); |
212 } | 212 } |
213 } | 213 } |
214 | 214 |
215 } // namespace chromeos | 215 } // namespace chromeos |
OLD | NEW |