Index: third_party/google_input_tools/src/chrome/os/message/source.js |
diff --git a/third_party/google_input_tools/src/chrome/os/inputview/featurename.js b/third_party/google_input_tools/src/chrome/os/message/source.js |
similarity index 67% |
copy from third_party/google_input_tools/src/chrome/os/inputview/featurename.js |
copy to third_party/google_input_tools/src/chrome/os/message/source.js |
index e777483f6d5f55b2ca25109a7f99e7a85e874322..78cf9a199fd43b6ca64d82baeabfdb5d195b18d2 100644 |
--- a/third_party/google_input_tools/src/chrome/os/inputview/featurename.js |
+++ b/third_party/google_input_tools/src/chrome/os/message/source.js |
@@ -11,17 +11,23 @@ |
// 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.FeatureName'); |
+goog.provide('i18n.input.chrome.message.Source'); |
+ |
/** |
- * All features. |
+ * Define the message source. |
* |
* @enum {string} |
*/ |
-i18n.input.chrome.inputview.FeatureName = { |
- // List all features. |
- GESTURE_EDITTING: 'gesture-editting', |
- GESTURE_TYPING: 'gesturetyping', |
- OPTIMIZED_LAYOUTS: 'optimized-layouts', |
- EXPERIMENTAL: 'experimental' |
+i18n.input.chrome.message.Source = { |
+ BG_BG: 'bg->bg', |
+ BG_VK: 'bg->vk', |
+ BG_OP: 'bg->op', |
+ VK_BG: 'vk->bg', |
+ VK_OP: 'vk->op', |
+ VK_VK: 'vk->vk', |
+ OP_BG: 'op->bg', |
+ OP_VK: 'op->vk', |
+ OP_OP: 'op->op', |
+ UNKNOWN: 'unknown' |
}; |