| 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
|
| };
|
|
|
|
|
|
|