summaryrefslogtreecommitdiffstats
path: root/chrome/browser/chromeos/input_method/input_method_manager_impl.h
diff options
context:
space:
mode:
authoralemate@chromium.org <alemate@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-01-30 13:29:09 +0000
committeralemate@chromium.org <alemate@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-01-30 13:29:09 +0000
commite979192fa8302019421a95473edb119133875d7e (patch)
tree58ec0818b4a1dd049e4072c04e5f9803e5b07272 /chrome/browser/chromeos/input_method/input_method_manager_impl.h
parentdda9d16107cc68315242a1168697448aa081e900 (diff)
downloadchromium_src-e979192fa8302019421a95473edb119133875d7e.zip
chromium_src-e979192fa8302019421a95473edb119133875d7e.tar.gz
chromium_src-e979192fa8302019421a95473edb119133875d7e.tar.bz2
Guest Mode: input method should default to the underlying latin keyboard layout.
Currently Guest mode always uses default value of Preferences.PreferredInputMethod = "" (empty string) that always leads to "us" keyboard layout (compiled-in default). Guest sessions should have the following input methods/keyboards readily available: - the VPD value (assuming the latin keyboard representing the underlying hardware; should be the default; e.g. French chromebook => azerty) - the additional input method/keyboard based on the locale (e.g. Japanese locale => should also add the Japanese IME; there are existing rules for this) BUG=329018 TEST=unittest Review URL: https://codereview.chromium.org/133273032 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@247938 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/chromeos/input_method/input_method_manager_impl.h')
-rw-r--r--chrome/browser/chromeos/input_method/input_method_manager_impl.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/chromeos/input_method/input_method_manager_impl.h b/chrome/browser/chromeos/input_method/input_method_manager_impl.h
index b3b2d68..f24152e 100644
--- a/chrome/browser/chromeos/input_method/input_method_manager_impl.h
+++ b/chrome/browser/chromeos/input_method/input_method_manager_impl.h
@@ -59,8 +59,8 @@ class InputMethodManagerImpl : public InputMethodManager,
virtual size_t GetNumActiveInputMethods() const OVERRIDE;
virtual const InputMethodDescriptor* GetInputMethodFromId(
const std::string& input_method_id) const OVERRIDE;
- virtual void EnableLayouts(const std::string& language_code,
- const std::string& initial_layout) OVERRIDE;
+ virtual void EnableLoginLayouts(const std::string& language_code,
+ const std::string& initial_layout) OVERRIDE;
virtual bool EnableInputMethods(
const std::vector<std::string>& new_active_input_method_ids) OVERRIDE;
virtual bool EnableInputMethod(const std::string& new_active_input_method_id)