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

Unified Diff: third_party/WebKit/Source/devtools/front_end/ui/DropTarget.js

Issue 2440953003: DevTools: use semicolons after each statement. (Closed)
Patch Set: rebaseline Created 4 years, 2 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/WebKit/Source/devtools/front_end/ui/DropTarget.js
diff --git a/third_party/WebKit/Source/devtools/front_end/ui/DropTarget.js b/third_party/WebKit/Source/devtools/front_end/ui/DropTarget.js
index 4970cd464105fae73f098539e5a6393233e0e285..5d113037138aa4fd25cf9bd97bd236d98e8e6e53 100644
--- a/third_party/WebKit/Source/devtools/front_end/ui/DropTarget.js
+++ b/third_party/WebKit/Source/devtools/front_end/ui/DropTarget.js
@@ -18,12 +18,12 @@ WebInspector.DropTarget = function(element, transferTypes, messageText, handleDr
this._messageText = messageText;
this._handleDrop = handleDrop;
this._enabled = true;
-}
+};
WebInspector.DropTarget.Types = {
Files: "Files",
URIList: "text/uri-list"
-}
+};
WebInspector.DropTarget.prototype = {
/**
@@ -99,4 +99,4 @@ WebInspector.DropTarget.prototype = {
this._dragMaskElement.remove();
delete this._dragMaskElement;
}
-}
+};

Powered by Google App Engine
This is Rietveld 408576698