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

Unified Diff: third_party/google_input_tools/src/chrome/os/message/source.js

Issue 1013263002: Update Google Input Tools. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 9 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/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'
};

Powered by Google App Engine
This is Rietveld 408576698