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

Unified Diff: third_party/google_input_tools/src/chrome/os/inputview/sizespec.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/sizespec.js
diff --git a/third_party/google_input_tools/src/chrome/os/inputview/sizespec.js b/third_party/google_input_tools/src/chrome/os/inputview/sizespec.js
index 329b8f8c8d614bb8d2f80386f54a54f25500f4ef..57b629388bddb83c09c4d3e55ef8dd391709a9e1 100644
--- a/third_party/google_input_tools/src/chrome/os/inputview/sizespec.js
+++ b/third_party/google_input_tools/src/chrome/os/inputview/sizespec.js
@@ -23,7 +23,7 @@ var SizeSpec = i18n.input.chrome.inputview.SizeSpec;
/**
* The height of the keyboard in a11y mode.
*
- * @type {number}
+ * @const {number}
*/
SizeSpec.A11Y_HEIGHT = 280;
@@ -31,20 +31,55 @@ SizeSpec.A11Y_HEIGHT = 280;
/**
* The height of the keyboard in non-a11y mode.
*
- * @type {number}
+ * @const {number}
*/
SizeSpec.NON_A11Y_HEIGHT = 372;
-/** @type {number} */
+/**
+ * The height of the candidate view in a11y mode.
+ *
+ * @const {number}
+ */
SizeSpec.A11Y_CANDIDATE_VIEW_HEIGHT = 30;
-/** @type {number} */
+/**
+ * The height of the candidate view in non-a11y mode.
+ *
+ * @const {number}
+ */
SizeSpec.NON_A11Y_CANDIDATE_VIEW_HEIGHT = 45;
/**
+ * The height of the candidate view for small size virtual keyboard.
+ *
+ * @const {number}
+ */
+/** @const {number} */
+SizeSpec.SMALL_SIZE_CANDIDATE_VIEW_HEIGHT = 30;
+
+
+/**
+ * The height of the small size virtual keyboard.
+ *
+ * @const {number}
+ */
+/** @const {number} */
+SizeSpec.SMALL_SIZE_HEIGHT = 230;
+
+
+/**
+ * The width of the small size virtual keyboard.
+ *
+ * @const {number}
+ */
+/** @const {number} */
+SizeSpec.SMALL_SIZE_WIDTH = 350;
+
+
+/**
* The width percent of a11y keyboard in landscape mode or portrait mode.
*
* @enum {number}

Powered by Google App Engine
This is Rietveld 408576698