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

Unified Diff: third_party/google_input_tools/src/chrome/os/inputview/adapter.js

Issue 975453003: Update Google Input Tools. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 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/adapter.js
diff --git a/third_party/google_input_tools/src/chrome/os/inputview/adapter.js b/third_party/google_input_tools/src/chrome/os/inputview/adapter.js
index bee4f683e9d0e07a4ca035ac2ef38686837a8b0e..b6664780ec04f6d6c98fcb799e8d73ee579e8487 100644
--- a/third_party/google_input_tools/src/chrome/os/inputview/adapter.js
+++ b/third_party/google_input_tools/src/chrome/os/inputview/adapter.js
@@ -117,10 +117,6 @@ Adapter.prototype.isA11yMode = false;
/** @type {boolean} */
-Adapter.prototype.isExperimental = false;
-
-
-/** @type {boolean} */
Adapter.prototype.isVoiceInputEnabled = true;
@@ -386,6 +382,7 @@ Adapter.prototype.isGestureTypingEnabled = function() {
return this.features.isEnabled(FeatureName.GESTURE_TYPING);
};
+
/**
* Callback when blurs in the context.
*
@@ -495,7 +492,6 @@ Adapter.prototype.initialize = function(languageCode) {
if (window.inputview) {
inputview.getKeyboardConfig((function(config) {
this.isA11yMode = !!config['a11ymode'];
- this.isExperimental = !!config['experimental'];
this.features.initialize(config);
this.readyState_.markStateReady(StateType.KEYBOARD_CONFIG_READY);
this.maybeDispatchSettingsReadyEvent_();
@@ -606,7 +602,6 @@ Adapter.prototype.onVisibilityChange_ = function() {
chrome.runtime.sendMessage(goog.object.create(
Name.TYPE, Type.VISIBILITY_CHANGE,
Name.VISIBILITY, !document.webkitHidden,
- Name.IS_EXPERIMENTAL, this.isExperimental,
Name.WORKSPACE_HEIGHT, screen.height - window.innerHeight));
};

Powered by Google App Engine
This is Rietveld 408576698