Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1443)

Unified Diff: third_party/google_input_tools/src/chrome/os/inputview/inputtooltype.js

Issue 1257313003: Update Google Input Tools (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Free up grd resources. Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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'
+};

Powered by Google App Engine
This is Rietveld 408576698