Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(18)

Side by Side Diff: chromeos/ime/input_method_manager.h

Issue 133273032: Guest Mode: input method should default to the underlying latin keyboard layout. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed bool login_layouts_only option from EnableLayouts(); EnableLayouts => EnableLoginLayouts. Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 #ifndef CHROMEOS_IME_INPUT_METHOD_MANAGER_H_ 5 #ifndef CHROMEOS_IME_INPUT_METHOD_MANAGER_H_
6 #define CHROMEOS_IME_INPUT_METHOD_MANAGER_H_ 6 #define CHROMEOS_IME_INPUT_METHOD_MANAGER_H_
7 7
8 #include <map> 8 #include <map>
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 virtual const std::vector<std::string>& GetActiveInputMethodIds() const = 0; 102 virtual const std::vector<std::string>& GetActiveInputMethodIds() const = 0;
103 103
104 // Returns the number of active input methods including extension input 104 // Returns the number of active input methods including extension input
105 // methods. 105 // methods.
106 virtual size_t GetNumActiveInputMethods() const = 0; 106 virtual size_t GetNumActiveInputMethods() const = 0;
107 107
108 // Changes the current input method to |input_method_id|. If |input_method_id| 108 // Changes the current input method to |input_method_id|. If |input_method_id|
109 // is not active, switch to the first one in the active input method list. 109 // is not active, switch to the first one in the active input method list.
110 virtual void ChangeInputMethod(const std::string& input_method_id) = 0; 110 virtual void ChangeInputMethod(const std::string& input_method_id) = 0;
111 111
112 // Enables keyboard layouts (e.g. US Qwerty, US Dvorak, French Azerty) that 112 // Enables "login" keyboard layouts (e.g. US Qwerty, US Dvorak, French
113 // are necessary for the |language_code| and then switches to |initial_layout| 113 // Azerty) that are necessary for the |language_code| and then switches to
114 // if the string is not empty. For example, if |language_code| is "en-US", US 114 // |initial_layout| if the string is not empty. For example, if
115 // Qwerty, US International, US Extended, US Dvorak, and US Colemak layouts 115 // |language_code| is "en-US", US Qwerty, US International, US Extended, US
116 // would be enabled. Likewise, for Germany locale, US Qwerty which corresponds 116 // Dvorak, and US Colemak layouts would be enabled. Likewise, for Germany
117 // to the hardware keyboard layout and several keyboard layouts for Germany 117 // locale, US Qwerty which corresponds to the hardware keyboard layout and
118 // would be enabled. 118 // several keyboard layouts for Germany would be enabled.
119 // This method is for setting up i18n keyboard layouts for the login screen. 119 // Only layouts suitable for login screen are enabled.
120 virtual void EnableLayouts(const std::string& language_code, 120 virtual void EnableLoginLayouts(const std::string& language_code,
121 const std::string& initial_layout) = 0; 121 const std::string& initial_layout) = 0;
122 122
123 // Activates the input method property specified by the |key|. 123 // Activates the input method property specified by the |key|.
124 virtual void ActivateInputMethodProperty(const std::string& key) = 0; 124 virtual void ActivateInputMethodProperty(const std::string& key) = 0;
125 125
126 // Updates the list of active input method IDs, and then starts or stops the 126 // Updates the list of active input method IDs, and then starts or stops the
127 // system input method framework as needed. 127 // system input method framework as needed.
128 virtual bool EnableInputMethods( 128 virtual bool EnableInputMethods(
129 const std::vector<std::string>& new_active_input_method_ids) = 0; 129 const std::vector<std::string>& new_active_input_method_ids) = 0;
130 130
131 // Adds one entry to the list of active input method IDs, and then starts or 131 // Adds one entry to the list of active input method IDs, and then starts or
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
183 virtual bool SwitchInputMethod(const ui::Accelerator& accelerator) = 0; 183 virtual bool SwitchInputMethod(const ui::Accelerator& accelerator) = 0;
184 184
185 // If keyboard layout can be uset at login screen 185 // If keyboard layout can be uset at login screen
186 virtual bool IsLoginKeyboard(const std::string& layout) const = 0; 186 virtual bool IsLoginKeyboard(const std::string& layout) const = 0;
187 }; 187 };
188 188
189 } // namespace input_method 189 } // namespace input_method
190 } // namespace chromeos 190 } // namespace chromeos
191 191
192 #endif // CHROMEOS_IME_INPUT_METHOD_MANAGER_H_ 192 #endif // CHROMEOS_IME_INPUT_METHOD_MANAGER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698