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/ui/webui/options2/language_options_handler.h" | 5 #include "chrome/browser/ui/webui/options2/language_options_handler.h" |
6 | 6 |
7 #include <map> | 7 #include <map> |
8 #include <string> | 8 #include <string> |
9 #include <utility> | 9 #include <utility> |
10 #include <vector> | 10 #include <vector> |
(...skipping 10 matching lines...) Expand all Loading... |
21 #include "chrome/common/chrome_switches.h" | 21 #include "chrome/common/chrome_switches.h" |
22 #include "chrome/common/pref_names.h" | 22 #include "chrome/common/pref_names.h" |
23 #include "content/public/browser/user_metrics.h" | 23 #include "content/public/browser/user_metrics.h" |
24 #include "content/public/browser/web_ui.h" | 24 #include "content/public/browser/web_ui.h" |
25 #include "grit/chromium_strings.h" | 25 #include "grit/chromium_strings.h" |
26 #include "grit/generated_resources.h" | 26 #include "grit/generated_resources.h" |
27 #include "ui/base/l10n/l10n_util.h" | 27 #include "ui/base/l10n/l10n_util.h" |
28 | 28 |
29 using content::UserMetricsAction; | 29 using content::UserMetricsAction; |
30 | 30 |
31 namespace options2 { | 31 namespace options { |
32 | 32 |
33 LanguageOptionsHandler::LanguageOptionsHandler() { | 33 LanguageOptionsHandler::LanguageOptionsHandler() { |
34 } | 34 } |
35 | 35 |
36 LanguageOptionsHandler::~LanguageOptionsHandler() { | 36 LanguageOptionsHandler::~LanguageOptionsHandler() { |
37 } | 37 } |
38 | 38 |
39 void LanguageOptionsHandler::GetLocalizedValues( | 39 void LanguageOptionsHandler::GetLocalizedValues( |
40 DictionaryValue* localized_strings) { | 40 DictionaryValue* localized_strings) { |
41 LanguageOptionsHandlerCommon::GetLocalizedValues(localized_strings); | 41 LanguageOptionsHandlerCommon::GetLocalizedValues(localized_strings); |
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
122 const std::string& language_code) { | 122 const std::string& language_code) { |
123 PrefService* pref_service = g_browser_process->local_state(); | 123 PrefService* pref_service = g_browser_process->local_state(); |
124 pref_service->SetString(prefs::kApplicationLocale, language_code); | 124 pref_service->SetString(prefs::kApplicationLocale, language_code); |
125 } | 125 } |
126 | 126 |
127 void LanguageOptionsHandler::RestartCallback(const ListValue* args) { | 127 void LanguageOptionsHandler::RestartCallback(const ListValue* args) { |
128 content::RecordAction(UserMetricsAction("LanguageOptions_Restart")); | 128 content::RecordAction(UserMetricsAction("LanguageOptions_Restart")); |
129 browser::AttemptRestart(); | 129 browser::AttemptRestart(); |
130 } | 130 } |
131 | 131 |
132 } // namespace options2 | 132 } // namespace options |
OLD | NEW |