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

Unified Diff: third_party/google_input_tools/src/chrome/os/inputview/hwt_eventtype.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/hwt_eventtype.js
diff --git a/third_party/google_input_tools/src/chrome/os/inputview/hwt_eventtype.js b/third_party/google_input_tools/src/chrome/os/inputview/hwt_eventtype.js
index 85b894b46727acf15696b7be08456c5faf888dbc..a7e3742d8c9a1b882eedb5ee660e3a548164427d 100644
--- a/third_party/google_input_tools/src/chrome/os/inputview/hwt_eventtype.js
+++ b/third_party/google_input_tools/src/chrome/os/inputview/hwt_eventtype.js
@@ -54,7 +54,8 @@ i18n.input.hwt.EventType = {
* @extends {goog.events.Event}
*/
i18n.input.hwt.CandidateSelectEvent = function(candidate) {
- goog.base(this, i18n.input.hwt.EventType.CANDIDATE_SELECT);
+ i18n.input.hwt.CandidateSelectEvent.base(
+ this, 'constructor', i18n.input.hwt.EventType.CANDIDATE_SELECT);
/**
* The candidate.
@@ -76,7 +77,8 @@ goog.inherits(i18n.input.hwt.CandidateSelectEvent, goog.events.Event);
* @extends {goog.events.Event}
*/
i18n.input.hwt.CommitEvent = function(text, opt_back) {
- goog.base(this, i18n.input.hwt.EventType.COMMIT);
+ i18n.input.hwt.CommitEvent.base(this, 'constructor',
+ i18n.input.hwt.EventType.COMMIT);
/**
* The text.

Powered by Google App Engine
This is Rietveld 408576698