| Index: chrome/browser/chromeos/input_method/input_method_util.h
|
| diff --git a/chrome/browser/chromeos/input_method/input_method_util.h b/chrome/browser/chromeos/input_method/input_method_util.h
|
| index 32f3efbc177d4163c19cc8dcb538a00256da63b3..ea50e9f29cf38b49817a7f8e03f87dd92ef4629d 100644
|
| --- a/chrome/browser/chromeos/input_method/input_method_util.h
|
| +++ b/chrome/browser/chromeos/input_method/input_method_util.h
|
| @@ -93,10 +93,17 @@ class InputMethodUtil {
|
| const std::vector<std::string>& input_method_ids,
|
| std::vector<std::string>* out_language_codes) const;
|
|
|
| + // Gets first input method associated with the language.
|
| + // Returns empty string on error.
|
| + std::string GetLanguageDefaultInputMethodId(const std::string& language_code);
|
| +
|
| // Returns the input method ID of the hardware keyboard. e.g. "xkb:us::eng"
|
| // for the US Qwerty keyboard.
|
| std::string GetHardwareInputMethodId() const;
|
|
|
| + // Returns the login-allowed input method ID of the hardware keyboard.
|
| + std::string GetHardwareLoginInputMethodId() const;
|
| +
|
| // Returns true if the given input method id is supported.
|
| bool IsValidInputMethodId(const std::string& input_method_id) const;
|
|
|
|
|