diff options
author | joi@chromium.org <joi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-02-16 04:20:59 +0000 |
---|---|---|
committer | joi@chromium.org <joi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-02-16 04:20:59 +0000 |
commit | d6ab8454f79ebdfe73801feaf06054c2480b5faf (patch) | |
tree | b6caa09f66d672bb7b85e0beb07a4bd586305c04 /chrome/browser/chromeos/input_method/input_method_delegate_impl.cc | |
parent | 8e0b3753d7e1cb48737956de0c4e0711ae9040bc (diff) | |
download | chromium_src-d6ab8454f79ebdfe73801feaf06054c2480b5faf.zip chromium_src-d6ab8454f79ebdfe73801feaf06054c2480b5faf.tar.gz chromium_src-d6ab8454f79ebdfe73801feaf06054c2480b5faf.tar.bz2 |
Remove PrefServiceBase, since everyone can now depend directly on PrefService.
TBR=ben@chromium.org
BUG=155525
Review URL: https://chromiumcodereview.appspot.com/12252008
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@182918 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/chromeos/input_method/input_method_delegate_impl.cc')
-rw-r--r-- | chrome/browser/chromeos/input_method/input_method_delegate_impl.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/chromeos/input_method/input_method_delegate_impl.cc b/chrome/browser/chromeos/input_method/input_method_delegate_impl.cc index 6bd19a9e..56e1190 100644 --- a/chrome/browser/chromeos/input_method/input_method_delegate_impl.cc +++ b/chrome/browser/chromeos/input_method/input_method_delegate_impl.cc @@ -16,7 +16,7 @@ InputMethodDelegateImpl::InputMethodDelegateImpl() {} std::string InputMethodDelegateImpl::GetHardwareKeyboardLayout() const { if (g_browser_process) { - PrefServiceBase* local_state = g_browser_process->local_state(); + PrefService* local_state = g_browser_process->local_state(); if (local_state) return local_state->GetString(prefs::kHardwareKeyboardLayout); } |