| Index: ui/keyboard/keyboard_util.cc
|
| diff --git a/ui/keyboard/keyboard_util.cc b/ui/keyboard/keyboard_util.cc
|
| index 012c0d99e877382e7726aca419be9421df2fa13c..ba2002608cf39c90fe2b44754a9ab418b2b1792b 100644
|
| --- a/ui/keyboard/keyboard_util.cc
|
| +++ b/ui/keyboard/keyboard_util.cc
|
| @@ -48,6 +48,8 @@ base::LazyInstance<base::Time> g_keyboard_load_time_start =
|
|
|
| bool g_accessibility_keyboard_enabled = false;
|
|
|
| +bool g_hotrod_keyboard_enabled = false;
|
| +
|
| base::LazyInstance<GURL> g_override_content_url = LAZY_INSTANCE_INITIALIZER;
|
|
|
| bool g_touch_keyboard_enabled = false;
|
| @@ -79,6 +81,14 @@ bool GetAccessibilityKeyboardEnabled() {
|
| return g_accessibility_keyboard_enabled;
|
| }
|
|
|
| +void SetHotrodKeyboardEnabled(bool enabled) {
|
| + g_hotrod_keyboard_enabled = enabled;
|
| +}
|
| +
|
| +bool GetHotrodKeyboardEnabled() {
|
| + return g_hotrod_keyboard_enabled;
|
| +}
|
| +
|
| void SetTouchKeyboardEnabled(bool enabled) {
|
| g_touch_keyboard_enabled = enabled;
|
| }
|
|
|