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

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

Issue 828063007: Uprev Google Input Tools. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update extensions schema. Created 5 years, 11 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/readystate.js
diff --git a/third_party/google_input_tools/src/chrome/os/inputview/readystate.js b/third_party/google_input_tools/src/chrome/os/inputview/readystate.js
index 6a633b1633719872dd569d9e93c94eb0bd9a28cf..5aeadbbf8bc2ca753e8e4f5b8628f28123ea0f99 100644
--- a/third_party/google_input_tools/src/chrome/os/inputview/readystate.js
+++ b/third_party/google_input_tools/src/chrome/os/inputview/readystate.js
@@ -16,6 +16,9 @@ goog.provide('i18n.input.chrome.inputview.ReadyState');
goog.scope(function() {
+
+
+
/**
* The system ready state which mainains a state bit map.
* Inputview controller uses this to determine whether the system is ready to
@@ -34,11 +37,12 @@ var ReadyState = i18n.input.chrome.inputview.ReadyState;
* @enum {number}
*/
ReadyState.StateType = {
- IME_LIST_READY: 1,
- KEYBOARD_CONFIG_READY: 2,
- LAYOUT_READY: 4,
- LAYOUT_CONFIG_READY: 8,
- M17N_LAYOUT_READY: 16
+ IME_LIST_READY: 0x1,
+ KEYBOARD_CONFIG_READY: 0x10,
+ LAYOUT_READY: 0x100,
+ LAYOUT_CONFIG_READY: 0x1000,
+ M17N_LAYOUT_READY: 0x10000,
+ INPUT_METHOD_CONFIG_READY: 0x100000
};

Powered by Google App Engine
This is Rietveld 408576698