Chromium Code Reviews| Index: chromeos/ime/input_method_descriptor.h |
| diff --git a/chromeos/ime/input_method_descriptor.h b/chromeos/ime/input_method_descriptor.h |
| index c410719c393407678aaf8dd2b8c6526309847802..b07161c9599bea4765f59429a1e205337637177c 100644 |
| --- a/chromeos/ime/input_method_descriptor.h |
| +++ b/chromeos/ime/input_method_descriptor.h |
| @@ -23,6 +23,7 @@ class CHROMEOS_EXPORT InputMethodDescriptor { |
| const std::string& name, |
| const std::vector<std::string>& keyboard_layouts, |
| const std::vector<std::string>& language_codes, |
| + bool is_login_keyboard, |
| const GURL& options_page_url); |
| ~InputMethodDescriptor(); |
| @@ -37,6 +38,8 @@ class CHROMEOS_EXPORT InputMethodDescriptor { |
| return keyboard_layouts_; |
| } |
| + bool is_login_keyboard() const { return is_login_keyboard_; } |
| + |
| // Returns preferred keyboard layout. |
| std::string GetPreferredKeyboardLayout() const; |
| @@ -56,6 +59,8 @@ class CHROMEOS_EXPORT InputMethodDescriptor { |
| // Language code like "ko", "ja", "en-US", and "zh-CN". |
| std::vector<std::string> language_codes_; |
| + bool is_login_keyboard_; |
|
Nikita (slow)
2013/08/22 14:39:57
nit: Please add comment.
Seigo Nonaka
2013/08/24 07:57:02
Done.
|
| + |
| // Options page URL e.g. |
| // "chrome-extension://ceaajjmckiakobniehbjpdcidfpohlin/options.html". |
| // We can't use GURL here due to dependency policy. This field is valid only |