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

Unified Diff: third_party/WebKit/Source/devtools/front_end/workspace/FileManager.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/workspace/FileManager.js
diff --git a/third_party/WebKit/Source/devtools/front_end/workspace/FileManager.js b/third_party/WebKit/Source/devtools/front_end/workspace/FileManager.js
index c6fa0c29b3e0c07720fc880c39350df50f75b3d7..ee5d5d6e8f2696466d113d7a0a1022eca3c116be 100644
--- a/third_party/WebKit/Source/devtools/front_end/workspace/FileManager.js
+++ b/third_party/WebKit/Source/devtools/front_end/workspace/FileManager.js
@@ -41,13 +41,13 @@ WebInspector.FileManager = function()
InspectorFrontendHost.events.addEventListener(InspectorFrontendHostAPI.Events.SavedURL, this._savedURL, this);
InspectorFrontendHost.events.addEventListener(InspectorFrontendHostAPI.Events.CanceledSaveURL, this._canceledSaveURL, this);
InspectorFrontendHost.events.addEventListener(InspectorFrontendHostAPI.Events.AppendedToURL, this._appendedToURL, this);
-}
+};
/** @enum {symbol} */
WebInspector.FileManager.Events = {
SavedURL: Symbol("SavedURL"),
AppendedToURL: Symbol("AppendedToURL")
-}
+};
WebInspector.FileManager.prototype = {
/**
@@ -137,7 +137,7 @@ WebInspector.FileManager.prototype = {
},
__proto__: WebInspector.Object.prototype
-}
+};
/**
* @type {?WebInspector.FileManager}

Powered by Google App Engine
This is Rietveld 408576698