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

Unified Diff: remoting/webapp/app_remoting/js/drag_and_drop.js

Issue 803653004: Update Chromoting to use /third_party/closure_compiler. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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: remoting/webapp/app_remoting/js/drag_and_drop.js
diff --git a/remoting/webapp/app_remoting/js/drag_and_drop.js b/remoting/webapp/app_remoting/js/drag_and_drop.js
index 2f01db0f7f24173709407430afc56403e46c0eec..dbe68d5e29ebfda3ef9c58cf36498a722ca54c7f 100644
--- a/remoting/webapp/app_remoting/js/drag_and_drop.js
+++ b/remoting/webapp/app_remoting/js/drag_and_drop.js
@@ -61,13 +61,13 @@ remoting.DragAndDrop = function(element, dragUpdate,
this.seenNonZeroDelta_ = false;
/**
- * @type {function():void}
+ * @type {function(Event):void}
* @private
*/
this.callOnMouseUp_ = this.onMouseUp_.bind(this);
/**
- * @type {function():void}
+ * @type {function(Event):void}
* @private
*/
this.callOnMouseMove_ = this.onMouseMove_.bind(this);
@@ -139,4 +139,4 @@ remoting.DragAndDrop.prototype.onMouseUp_ = function(event) {
if (this.dragEnd_) {
this.dragEnd_();
}
-};
+};

Powered by Google App Engine
This is Rietveld 408576698