diff options
author | erikwright@chromium.org <erikwright@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-12-14 00:17:04 +0000 |
---|---|---|
committer | erikwright@chromium.org <erikwright@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-12-14 00:17:04 +0000 |
commit | e6c1a7d3b21482fb58491b231a32bcff8666f73f (patch) | |
tree | 44de04765c7d85aeb2f94e0819ed1a87aa6e806a /chrome/browser/chromeos/input_method/input_method_delegate_impl.h | |
parent | 06af6a46eb2f078f8df6e241051ded35b2f1ae6e (diff) | |
download | chromium_src-e6c1a7d3b21482fb58491b231a32bcff8666f73f.zip chromium_src-e6c1a7d3b21482fb58491b231a32bcff8666f73f.tar.gz chromium_src-e6c1a7d3b21482fb58491b231a32bcff8666f73f.tar.bz2 |
Decompose BrowserStateMonitor into two parts, simplifying unit tests and APIs.
Decouple InputMethodManagerImpl from content notifications by requiring the client to push said notifications. BrowserStateMonitor and InputMethodPersistence thus become part of the client (configuration layer).
BUG=164375
TBR=sky
Review URL: https://chromiumcodereview.appspot.com/11466010
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@173015 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/chromeos/input_method/input_method_delegate_impl.h')
-rw-r--r-- | chrome/browser/chromeos/input_method/input_method_delegate_impl.h | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/chrome/browser/chromeos/input_method/input_method_delegate_impl.h b/chrome/browser/chromeos/input_method/input_method_delegate_impl.h index 6aea2ae..b327b61 100644 --- a/chrome/browser/chromeos/input_method/input_method_delegate_impl.h +++ b/chrome/browser/chromeos/input_method/input_method_delegate_impl.h @@ -14,17 +14,13 @@ namespace chromeos { namespace input_method { -// Persists input method changes to the BrowserProcess local state or to the -// user preferences, as appropriate. Accesses the hardware keyboard layout and -// application locale from the BrowserProcess. +// Accesses the hardware keyboard layout and application locale from the +// BrowserProcess. class InputMethodDelegateImpl : public InputMethodDelegate { public: InputMethodDelegateImpl(); // InputMethodDelegate implementation. - virtual void SetSystemInputMethod( - const std::string& input_method) OVERRIDE; - virtual void SetUserInputMethod(const std::string& input_method) OVERRIDE; virtual std::string GetHardwareKeyboardLayout() const OVERRIDE; virtual std::string GetActiveLocale() const OVERRIDE; |