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

Unified Diff: third_party/google_input_tools/third_party/closure_library/closure/goog/events/event.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/event.js
diff --git a/third_party/google_input_tools/third_party/closure_library/closure/goog/events/event.js b/third_party/google_input_tools/third_party/closure_library/closure/goog/events/event.js
index 0e55fdcf9d41c6e14d0bb3cdce9d55c1df4d9d32..b671289c206200387b37fe4664bf2790baa19f3a 100644
--- a/third_party/google_input_tools/third_party/closure_library/closure/goog/events/event.js
+++ b/third_party/google_input_tools/third_party/closure_library/closure/goog/events/event.js
@@ -60,7 +60,7 @@ goog.events.Event = function(type, opt_target) {
this.type = type instanceof goog.events.EventId ? String(type) : type;
/**
- * TODO(user): The type should probably be
+ * TODO(tbreisacher): The type should probably be
* EventTarget|goog.events.EventTarget.
*
* Target of the event.
@@ -105,24 +105,6 @@ goog.events.Event = function(type, opt_target) {
/**
- * For backwards compatibility (goog.events.Event used to inherit
- * goog.Disposable).
- * @deprecated Events don't need to be disposed.
- */
-goog.events.Event.prototype.disposeInternal = function() {
-};
-
-
-/**
- * For backwards compatibility (goog.events.Event used to inherit
- * goog.Disposable).
- * @deprecated Events don't need to be disposed.
- */
-goog.events.Event.prototype.dispose = function() {
-};
-
-
-/**
* Stops event propagation.
*/
goog.events.Event.prototype.stopPropagation = function() {

Powered by Google App Engine
This is Rietveld 408576698