OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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/base/locale_util.h" | 5 #include "chrome/browser/chromeos/base/locale_util.h" |
6 | 6 |
7 #include <vector> | 7 #include <vector> |
8 | 8 |
9 #include "chrome/browser/browser_process.h" | 9 #include "chrome/browser/browser_process.h" |
10 #include "chrome/browser/chromeos/input_method/input_method_util.h" | 10 #include "chrome/browser/chromeos/input_method/input_method_util.h" |
11 #include "chromeos/ime/input_method_manager.h" | 11 #include "chromeos/ime/input_method_manager.h" |
12 #include "content/public/browser/browser_thread.h" | 12 #include "content/public/browser/browser_thread.h" |
13 #include "ui/base/resource/resource_bundle.h" | 13 #include "ui/base/resource/resource_bundle.h" |
14 #include "ui/gfx/platform_font_pango.h" | 14 #include "ui/gfx/platform_font_pango.h" |
15 | 15 |
16 namespace chromeos { | 16 namespace chromeos { |
17 | 17 |
18 namespace { | 18 namespace { |
19 | 19 |
20 struct SwitchLanguageData { | 20 struct SwitchLanguageData { |
21 SwitchLanguageData(const std::string& locale, | 21 SwitchLanguageData(const std::string& locale, |
22 const bool enable_locale_keyboard_layouts, | 22 const bool enable_locale_keyboard_layouts, |
23 const bool login_layouts_only, | 23 const bool login_layouts_only, |
24 scoped_ptr<locale_util::SwitchLanguageCallback> callback) | 24 const locale_util::SwitchLanguageCallback& callback) |
25 : callback(callback.Pass()), | 25 : callback(callback), |
26 locale(locale), | 26 result(locale, std::string(), false), |
27 enable_locale_keyboard_layouts(enable_locale_keyboard_layouts), | 27 enable_locale_keyboard_layouts(enable_locale_keyboard_layouts), |
28 login_layouts_only(login_layouts_only), | 28 login_layouts_only(login_layouts_only) {} |
29 success(false) {} | |
30 | 29 |
31 scoped_ptr<locale_util::SwitchLanguageCallback> callback; | 30 const locale_util::SwitchLanguageCallback callback; |
32 | 31 |
33 const std::string locale; | 32 locale_util::LanguageSwitchResult result; |
34 const bool enable_locale_keyboard_layouts; | 33 const bool enable_locale_keyboard_layouts; |
35 const bool login_layouts_only; | 34 const bool login_layouts_only; |
36 std::string loaded_locale; | |
37 bool success; | |
38 }; | 35 }; |
39 | 36 |
40 // Runs on SequencedWorkerPool thread under PostTaskAndReply(). | 37 // Runs on SequencedWorkerPool thread under PostTaskAndReply(). |
41 // So data is owned by "Reply" part of PostTaskAndReply() process. | 38 // So data is owned by "Reply" part of PostTaskAndReply() process. |
42 void SwitchLanguageDoReloadLocale(SwitchLanguageData* data) { | 39 void SwitchLanguageDoReloadLocale(SwitchLanguageData* data) { |
43 DCHECK(!content::BrowserThread::CurrentlyOn(content::BrowserThread::UI)); | 40 DCHECK(!content::BrowserThread::CurrentlyOn(content::BrowserThread::UI)); |
44 | 41 |
45 data->loaded_locale = | 42 data->result.loaded_locale = |
46 ResourceBundle::GetSharedInstance().ReloadLocaleResources(data->locale); | 43 ResourceBundle::GetSharedInstance().ReloadLocaleResources( |
| 44 data->result.requested_locale); |
47 | 45 |
48 data->success = !data->loaded_locale.empty(); | 46 data->result.success = !data->result.loaded_locale.empty(); |
49 | 47 |
50 ResourceBundle::GetSharedInstance().ReloadFonts(); | 48 ResourceBundle::GetSharedInstance().ReloadFonts(); |
51 } | 49 } |
52 | 50 |
53 // Callback after SwitchLanguageDoReloadLocale() back in UI thread. | 51 // Callback after SwitchLanguageDoReloadLocale() back in UI thread. |
54 void FinishSwitchLanguage(scoped_ptr<SwitchLanguageData> data) { | 52 void FinishSwitchLanguage(scoped_ptr<SwitchLanguageData> data) { |
55 DCHECK(content::BrowserThread::CurrentlyOn(content::BrowserThread::UI)); | 53 DCHECK(content::BrowserThread::CurrentlyOn(content::BrowserThread::UI)); |
56 if (data->success) { | 54 if (data->result.success) { |
57 g_browser_process->SetApplicationLocale(data->loaded_locale); | 55 g_browser_process->SetApplicationLocale(data->result.loaded_locale); |
58 | 56 |
59 if (data->enable_locale_keyboard_layouts) { | 57 if (data->enable_locale_keyboard_layouts) { |
60 input_method::InputMethodManager* manager = | 58 input_method::InputMethodManager* manager = |
61 input_method::InputMethodManager::Get(); | 59 input_method::InputMethodManager::Get(); |
62 scoped_refptr<input_method::InputMethodManager::State> ime_state = | 60 scoped_refptr<input_method::InputMethodManager::State> ime_state = |
63 manager->GetActiveIMEState(); | 61 manager->GetActiveIMEState(); |
64 if (data->login_layouts_only) { | 62 if (data->login_layouts_only) { |
65 // Enable the hardware keyboard layouts and locale-specific layouts | 63 // Enable the hardware keyboard layouts and locale-specific layouts |
66 // suitable for use on the login screen. This will also switch to the | 64 // suitable for use on the login screen. This will also switch to the |
67 // first hardware keyboard layout since the input method currently in | 65 // first hardware keyboard layout since the input method currently in |
68 // use may not be supported by the new locale. | 66 // use may not be supported by the new locale. |
69 ime_state->EnableLoginLayouts( | 67 ime_state->EnableLoginLayouts( |
70 data->loaded_locale, | 68 data->result.loaded_locale, |
71 manager->GetInputMethodUtil()->GetHardwareLoginInputMethodIds()); | 69 manager->GetInputMethodUtil()->GetHardwareLoginInputMethodIds()); |
72 } else { | 70 } else { |
73 // Enable all hardware keyboard layouts. This will also switch to the | 71 // Enable all hardware keyboard layouts. This will also switch to the |
74 // first hardware keyboard layout. | 72 // first hardware keyboard layout. |
75 ime_state->ReplaceEnabledInputMethods( | 73 ime_state->ReplaceEnabledInputMethods( |
76 manager->GetInputMethodUtil()->GetHardwareInputMethodIds()); | 74 manager->GetInputMethodUtil()->GetHardwareInputMethodIds()); |
77 | 75 |
78 // Enable all locale-specific layouts. | 76 // Enable all locale-specific layouts. |
79 std::vector<std::string> input_methods; | 77 std::vector<std::string> input_methods; |
80 manager->GetInputMethodUtil()->GetInputMethodIdsFromLanguageCode( | 78 manager->GetInputMethodUtil()->GetInputMethodIdsFromLanguageCode( |
81 data->loaded_locale, | 79 data->result.loaded_locale, |
82 input_method::kKeyboardLayoutsOnly, | 80 input_method::kKeyboardLayoutsOnly, |
83 &input_methods); | 81 &input_methods); |
84 for (std::vector<std::string>::const_iterator it = | 82 for (std::vector<std::string>::const_iterator it = |
85 input_methods.begin(); it != input_methods.end(); ++it) { | 83 input_methods.begin(); it != input_methods.end(); ++it) { |
86 ime_state->EnableInputMethod(*it); | 84 ime_state->EnableInputMethod(*it); |
87 } | 85 } |
88 } | 86 } |
89 } | 87 } |
90 } | 88 } |
91 gfx::PlatformFontPango::ReloadDefaultFont(); | 89 gfx::PlatformFontPango::ReloadDefaultFont(); |
92 if (data->callback) | 90 if (!data->callback.is_null()) |
93 data->callback->Run(data->locale, data->loaded_locale, data->success); | 91 data->callback.Run(data->result); |
94 } | 92 } |
95 | 93 |
96 } // namespace | 94 } // namespace |
97 | 95 |
98 namespace locale_util { | 96 namespace locale_util { |
99 | 97 |
| 98 LanguageSwitchResult::LanguageSwitchResult(const std::string& requested_locale, |
| 99 const std::string& loaded_locale, |
| 100 bool success) |
| 101 : requested_locale(requested_locale), |
| 102 loaded_locale(loaded_locale), |
| 103 success(success) { |
| 104 } |
| 105 |
100 void SwitchLanguage(const std::string& locale, | 106 void SwitchLanguage(const std::string& locale, |
101 const bool enable_locale_keyboard_layouts, | 107 const bool enable_locale_keyboard_layouts, |
102 const bool login_layouts_only, | 108 const bool login_layouts_only, |
103 scoped_ptr<SwitchLanguageCallback> callback) { | 109 const SwitchLanguageCallback& callback) { |
104 DCHECK(content::BrowserThread::CurrentlyOn(content::BrowserThread::UI)); | 110 DCHECK(content::BrowserThread::CurrentlyOn(content::BrowserThread::UI)); |
105 scoped_ptr<SwitchLanguageData> data( | 111 scoped_ptr<SwitchLanguageData> data(new SwitchLanguageData( |
106 new SwitchLanguageData(locale, | 112 locale, enable_locale_keyboard_layouts, login_layouts_only, callback)); |
107 enable_locale_keyboard_layouts, | |
108 login_layouts_only, | |
109 callback.Pass())); | |
110 base::Closure reloader( | 113 base::Closure reloader( |
111 base::Bind(&SwitchLanguageDoReloadLocale, base::Unretained(data.get()))); | 114 base::Bind(&SwitchLanguageDoReloadLocale, base::Unretained(data.get()))); |
112 content::BrowserThread::PostBlockingPoolTaskAndReply( | 115 content::BrowserThread::PostBlockingPoolTaskAndReply( |
113 FROM_HERE, | 116 FROM_HERE, |
114 reloader, | 117 reloader, |
115 base::Bind(&FinishSwitchLanguage, base::Passed(data.Pass()))); | 118 base::Bind(&FinishSwitchLanguage, base::Passed(data.Pass()))); |
116 } | 119 } |
117 | 120 |
118 } // namespace locale_util | 121 } // namespace locale_util |
119 } // namespace chromeos | 122 } // namespace chromeos |
OLD | NEW |