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

Unified Diff: third_party/WebKit/Source/devtools/front_end/sources/AddSourceMapURLDialog.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/sources/AddSourceMapURLDialog.js
diff --git a/third_party/WebKit/Source/devtools/front_end/sources/AddSourceMapURLDialog.js b/third_party/WebKit/Source/devtools/front_end/sources/AddSourceMapURLDialog.js
index 6dcc03939a92d944e9fdcdf9df3bc31a2eb18e08..a7ef73adb3683c2beed2431b13c5a06c73f7304d 100644
--- a/third_party/WebKit/Source/devtools/front_end/sources/AddSourceMapURLDialog.js
+++ b/third_party/WebKit/Source/devtools/front_end/sources/AddSourceMapURLDialog.js
@@ -24,7 +24,7 @@ WebInspector.AddSourceMapURLDialog = function(callback)
this.setDefaultFocusedElement(this._input);
this._callback = callback;
this.contentElement.tabIndex = 0;
-}
+};
/**
* @param {function(string)} callback
@@ -45,7 +45,7 @@ WebInspector.AddSourceMapURLDialog.show = function(callback)
dialog.detach();
callback(value);
}
-}
+};
WebInspector.AddSourceMapURLDialog.prototype = {
_apply: function()
@@ -65,4 +65,4 @@ WebInspector.AddSourceMapURLDialog.prototype = {
},
__proto__: WebInspector.HBox.prototype
-}
+};

Powered by Google App Engine
This is Rietveld 408576698