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

Unified Diff: third_party/google_input_tools/third_party/closure_library/closure/goog/events/listenermap.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/third_party/closure_library/closure/goog/events/listenermap.js
diff --git a/third_party/google_input_tools/third_party/closure_library/closure/goog/events/listenermap.js b/third_party/google_input_tools/third_party/closure_library/closure/goog/events/listenermap.js
index 8930eb6c8c188a4f5c7822e1c438be3df25764be..c20cdb9738090ff1471f3edea5938b118e9abc88 100644
--- a/third_party/google_input_tools/third_party/closure_library/closure/goog/events/listenermap.js
+++ b/third_party/google_input_tools/third_party/closure_library/closure/goog/events/listenermap.js
@@ -44,7 +44,7 @@ goog.events.ListenerMap = function(src) {
/**
* Maps of event type to an array of listeners.
- * @type {Object.<string, !Array.<!goog.events.Listener>>}
+ * @type {Object<string, !Array<!goog.events.Listener>>}
*/
this.listeners = {};
@@ -210,7 +210,7 @@ goog.events.ListenerMap.prototype.removeAll = function(opt_type) {
* @param {string|!goog.events.EventId} type The type of the listeners
* to retrieve.
* @param {boolean} capture The capture mode of the listeners to retrieve.
- * @return {!Array.<goog.events.ListenableKey>} An array of matching
+ * @return {!Array<goog.events.ListenableKey>} An array of matching
* listeners.
*/
goog.events.ListenerMap.prototype.getListeners = function(type, capture) {
@@ -285,7 +285,7 @@ goog.events.ListenerMap.prototype.hasListener = function(
/**
* Finds the index of a matching goog.events.Listener in the given
* listenerArray.
- * @param {!Array.<!goog.events.Listener>} listenerArray Array of listener.
+ * @param {!Array<!goog.events.Listener>} listenerArray Array of listener.
* @param {!Function} listener The listener function.
* @param {boolean=} opt_useCapture The capture flag for the listener.
* @param {Object=} opt_listenerScope The listener scope.

Powered by Google App Engine
This is Rietveld 408576698