Index: third_party/google_input_tools/src/chrome/os/inputview/inputtooltype.js |
diff --git a/third_party/google_input_tools/src/chrome/os/inputview/globalflags.js b/third_party/google_input_tools/src/chrome/os/inputview/inputtooltype.js |
similarity index 75% |
copy from third_party/google_input_tools/src/chrome/os/inputview/globalflags.js |
copy to third_party/google_input_tools/src/chrome/os/inputview/inputtooltype.js |
index 26fa46819246f156e7d29fedf3addc08ccaa41e5..601532419ac8dc3d1745865b18e9d24f398562b0 100644 |
--- a/third_party/google_input_tools/src/chrome/os/inputview/globalflags.js |
+++ b/third_party/google_input_tools/src/chrome/os/inputview/inputtooltype.js |
@@ -11,12 +11,18 @@ |
// you may not use this file except in compliance with the License. |
// Licensed under the Apache License, Version 2.0 (the "License"); |
// |
-goog.provide('i18n.input.chrome.inputview.GlobalFlags'); |
+goog.provide('i18n.input.lang.InputToolType'); |
/** |
- * Whether input view keyboards of material design is enabled. |
+ * Enumeration for input tool types. |
* |
- * @type {boolean} |
+ * @enum {string} |
*/ |
-i18n.input.chrome.inputview.GlobalFlags.isQPInputView = true; |
+i18n.input.lang.InputToolType = { |
+ IME: 'im', |
+ KBD: 'vkd', |
+ HWT: 'hw', |
+ VOICE: 'vo', |
+ XKB: 'xkb' |
+}; |