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

Unified Diff: third_party/google_input_tools/src/chrome/os/featuretracker.js

Issue 1576613002: Update Google Input Tools. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add missing APIs, remove bade dependencies. Created 4 years, 11 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/featuretracker.js
diff --git a/third_party/google_input_tools/src/chrome/os/inputview/featuretracker.js b/third_party/google_input_tools/src/chrome/os/featuretracker.js
similarity index 85%
rename from third_party/google_input_tools/src/chrome/os/inputview/featuretracker.js
rename to third_party/google_input_tools/src/chrome/os/featuretracker.js
index ea35c87caec87b58628caa5d82a43ba57b0f123b..20043e30f0e2d23908ff7d305b559e4f872806d8 100644
--- a/third_party/google_input_tools/src/chrome/os/inputview/featuretracker.js
+++ b/third_party/google_input_tools/src/chrome/os/featuretracker.js
@@ -1,4 +1,4 @@
-// Copyright 2015 The ChromeOS IME Authors. All Rights Reserved.
+// Copyright 2016 The ChromeOS IME Authors. All Rights Reserved.
// limitations under the License.
// See the License for the specific language governing permissions and
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -11,13 +11,13 @@
// 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.FeatureTracker');
+goog.provide('i18n.input.chrome.FeatureTracker');
-goog.require('goog.object');
-goog.require('i18n.input.chrome.inputview.FeatureName');
+goog.require('i18n.input.chrome.FeatureName');
goog.scope(function() {
-var FeatureName = i18n.input.chrome.inputview.FeatureName;
+var FeatureName = i18n.input.chrome.FeatureName;
+
/**
@@ -25,7 +25,7 @@ var FeatureName = i18n.input.chrome.inputview.FeatureName;
*
* @constructor
*/
-i18n.input.chrome.inputview.FeatureTracker = function() {
+i18n.input.chrome.FeatureTracker = function() {
/**
* Whether experimental flags is enabled.
@@ -51,7 +51,7 @@ i18n.input.chrome.inputview.FeatureTracker = function() {
this.ready_ = false;
};
-var FeatureTracker = i18n.input.chrome.inputview.FeatureTracker;
+var FeatureTracker = i18n.input.chrome.FeatureTracker;
/**

Powered by Google App Engine
This is Rietveld 408576698