| Index: ui/base/ime/input_method_base.h
|
| diff --git a/ui/base/ime/input_method_base.h b/ui/base/ime/input_method_base.h
|
| index 4d732cdd0e4821ed8b3e19ffad4ceb09ec570235..5725f1016d1d4430f8aeda310e21dfc55e35019a 100644
|
| --- a/ui/base/ime/input_method_base.h
|
| +++ b/ui/base/ime/input_method_base.h
|
| @@ -52,6 +52,8 @@ class UI_BASE_EXPORT InputMethodBase
|
| int GetTextInputFlags() const override;
|
| bool CanComposeInline() const override;
|
| void ShowImeIfNeeded() override;
|
| + void SetSupportsOnScreenKeyboard(bool supported) override;
|
| + bool SupportsOnScreenKeyboard() const override;
|
|
|
| void AddObserver(InputMethodObserver* observer) override;
|
| void RemoveObserver(InputMethodObserver* observer) override;
|
| @@ -113,6 +115,7 @@ class UI_BASE_EXPORT InputMethodBase
|
| ObserverList<InputMethodObserver> observer_list_;
|
|
|
| bool system_toplevel_window_focused_;
|
| + bool on_screen_keyboard_supported_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(InputMethodBase);
|
| };
|
|
|