Disable view source for Developer Tools.
[chromium-blink-merge.git] / chrome / browser / chromeos / input_method / input_method_delegate_impl.cc
blobddfbe69dea6b4f17f41d8981ef514b9847453d28
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
3 // found in the LICENSE file.
5 #include "chrome/browser/chromeos/input_method/input_method_delegate_impl.h"
7 #include "base/logging.h"
8 #include "base/prefs/pref_service.h"
9 #include "chrome/browser/browser_process.h"
10 #include "chrome/common/pref_names.h"
11 #include "ui/base/l10n/l10n_util.h"
13 namespace chromeos {
14 namespace input_method {
16 InputMethodDelegateImpl::InputMethodDelegateImpl() {}
18 std::string InputMethodDelegateImpl::GetHardwareKeyboardLayout() const {
19 if (g_browser_process) {
20 PrefService* local_state = g_browser_process->local_state();
21 if (local_state)
22 return local_state->GetString(prefs::kHardwareKeyboardLayout);
24 // This shouldn't happen but just in case.
25 DVLOG(1) << "Local state is not yet ready.";
26 return std::string();
29 base::string16 InputMethodDelegateImpl::GetLocalizedString(
30 int resource_id) const {
31 return l10n_util::GetStringUTF16(resource_id);
34 base::string16 InputMethodDelegateImpl::GetDisplayLanguageName(
35 const std::string& language_code) const {
36 DCHECK(g_browser_process);
37 return l10n_util::GetDisplayNameForLocale(
38 language_code,
39 g_browser_process->GetApplicationLocale(),
40 true);
43 } // namespace input_method
44 } // namespace chromeos