| 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/input_method/input_method_delegate_impl.h" | 5 #include "chrome/browser/chromeos/input_method/input_method_delegate_impl.h" |
| 6 | 6 |
| 7 #include "base/logging.h" | 7 #include "base/logging.h" |
| 8 #include "base/prefs/pref_service.h" | 8 #include "base/prefs/pref_service.h" |
| 9 #include "base/strings/string_util.h" |
| 9 #include "chrome/browser/browser_process.h" | 10 #include "chrome/browser/browser_process.h" |
| 10 #include "chrome/common/pref_names.h" | 11 #include "chrome/common/pref_names.h" |
| 11 #include "ui/base/l10n/l10n_util.h" | 12 #include "ui/base/l10n/l10n_util.h" |
| 12 | 13 |
| 13 namespace chromeos { | 14 namespace chromeos { |
| 14 namespace input_method { | 15 namespace input_method { |
| 15 | 16 |
| 16 InputMethodDelegateImpl::InputMethodDelegateImpl() {} | 17 InputMethodDelegateImpl::InputMethodDelegateImpl() { |
| 18 } |
| 17 | 19 |
| 18 std::string InputMethodDelegateImpl::GetHardwareKeyboardLayout() const { | 20 InputMethodDelegateImpl::~InputMethodDelegateImpl() { |
| 19 if (g_browser_process) { | 21 } |
| 20 PrefService* local_state = g_browser_process->local_state(); | 22 |
| 21 if (local_state) | 23 void InputMethodDelegateImpl::GetHardwareKeyboardLayouts( |
| 22 return local_state->GetString(prefs::kHardwareKeyboardLayout); | 24 std::vector<std::string>* out) const { |
| 23 } | 25 DCHECK(out); |
| 24 // This shouldn't happen but just in case. | 26 out->clear(); |
| 25 DVLOG(1) << "Local state is not yet ready."; | 27 if (!g_browser_process) |
| 26 return std::string(); | 28 return; |
| 29 |
| 30 PrefService* local_state = g_browser_process->local_state(); |
| 31 if (!local_state) |
| 32 return; |
| 33 |
| 34 Tokenize(local_state->GetString(prefs::kHardwareKeyboardLayout), ",", out); |
| 27 } | 35 } |
| 28 | 36 |
| 29 base::string16 InputMethodDelegateImpl::GetLocalizedString( | 37 base::string16 InputMethodDelegateImpl::GetLocalizedString( |
| 30 int resource_id) const { | 38 int resource_id) const { |
| 31 return l10n_util::GetStringUTF16(resource_id); | 39 return l10n_util::GetStringUTF16(resource_id); |
| 32 } | 40 } |
| 33 | 41 |
| 34 base::string16 InputMethodDelegateImpl::GetDisplayLanguageName( | 42 base::string16 InputMethodDelegateImpl::GetDisplayLanguageName( |
| 35 const std::string& language_code) const { | 43 const std::string& language_code) const { |
| 36 DCHECK(g_browser_process); | 44 DCHECK(g_browser_process); |
| 37 return l10n_util::GetDisplayNameForLocale( | 45 return l10n_util::GetDisplayNameForLocale( |
| 38 language_code, | 46 language_code, |
| 39 g_browser_process->GetApplicationLocale(), | 47 g_browser_process->GetApplicationLocale(), |
| 40 true); | 48 true); |
| 41 } | 49 } |
| 42 | 50 |
| 43 } // namespace input_method | 51 } // namespace input_method |
| 44 } // namespace chromeos | 52 } // namespace chromeos |
| OLD | NEW |