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

Unified Diff: third_party/google_input_tools/src/chrome/os/inputview/config/hwt_data.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/config/hwt_data.js
diff --git a/third_party/google_input_tools/src/chrome/os/inputview/config/hwt_data.js b/third_party/google_input_tools/src/chrome/os/inputview/config/hwt_data.js
index 98de8f6c58559b8293643e7c48fb0bf423e17c45..08930ea8d3aaf9d3f3f07aa7a6e375378903ba5b 100644
--- a/third_party/google_input_tools/src/chrome/os/inputview/config/hwt_data.js
+++ b/third_party/google_input_tools/src/chrome/os/inputview/config/hwt_data.js
@@ -25,6 +25,9 @@ goog.require('i18n.input.chrome.inputview.elements.ElementType');
var viewIdPrefix = 'handwriting-k-';
var spec = {};
+ spec[SpecNodeName.ID] = 'FullHwtPlaceHolder';
+ var placeHolderKey = util.createKey(spec);
+
spec[SpecNodeName.ID] = 'Comma';
spec[SpecNodeName.TYPE] = ElementType.CHARACTER_KEY;
spec[SpecNodeName.CHARACTERS] = [','];
@@ -44,11 +47,13 @@ goog.require('i18n.input.chrome.inputview.elements.ElementType');
var spaceKey = i18n.input.chrome.inputview.content.util.createKey(spec);
var keyList = [
+ placeHolderKey,
commaKey,
periodKey,
- spaceKey,
+ util.createBackToKeyboardKey(),
util.createBackspaceKey(),
util.createEnterKey(),
+ spaceKey,
util.createHideKeyboardKey()
];

Powered by Google App Engine
This is Rietveld 408576698