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

Unified Diff: third_party/WebKit/Source/devtools/front_end/sources/OpenResourceDialog.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/OpenResourceDialog.js
diff --git a/third_party/WebKit/Source/devtools/front_end/sources/OpenResourceDialog.js b/third_party/WebKit/Source/devtools/front_end/sources/OpenResourceDialog.js
index b962887d3d838d8547c54a84a5f79162aff2c77e..5c74dd08fd320e3c95ce0c5245c8430daf28f2e7 100644
--- a/third_party/WebKit/Source/devtools/front_end/sources/OpenResourceDialog.js
+++ b/third_party/WebKit/Source/devtools/front_end/sources/OpenResourceDialog.js
@@ -15,7 +15,7 @@ WebInspector.OpenResourceDialog = function(sourcesView, defaultScores, history)
{
WebInspector.FilteredUISourceCodeListDelegate.call(this, defaultScores, history);
this._sourcesView = sourcesView;
-}
+};
WebInspector.OpenResourceDialog.prototype = {
@@ -64,7 +64,7 @@ WebInspector.OpenResourceDialog.prototype = {
},
__proto__: WebInspector.FilteredUISourceCodeListDelegate.prototype
-}
+};
/**
* @param {!WebInspector.SourcesView} sourcesView
@@ -78,7 +78,7 @@ WebInspector.OpenResourceDialog.show = function(sourcesView, query, defaultScore
var filteredItemSelectionDialog = new WebInspector.FilteredListWidget(WebInspector.OpenResourceDialog._instanceForTest);
filteredItemSelectionDialog.showAsDialog();
filteredItemSelectionDialog.setQuery(query);
-}
+};
/**
* @constructor
@@ -91,7 +91,7 @@ WebInspector.SelectUISourceCodeForProjectTypesDialog = function(types, callback)
this._types = types;
WebInspector.FilteredUISourceCodeListDelegate.call(this);
this._callback = callback;
-}
+};
WebInspector.SelectUISourceCodeForProjectTypesDialog.prototype = {
/**
@@ -125,7 +125,7 @@ WebInspector.SelectUISourceCodeForProjectTypesDialog.prototype = {
},
__proto__: WebInspector.FilteredUISourceCodeListDelegate.prototype
-}
+};
/**
* @param {string} name
@@ -137,4 +137,4 @@ WebInspector.SelectUISourceCodeForProjectTypesDialog.show = function(name, types
var filteredItemSelectionDialog = new WebInspector.FilteredListWidget(new WebInspector.SelectUISourceCodeForProjectTypesDialog(types, callback));
filteredItemSelectionDialog.showAsDialog();
filteredItemSelectionDialog.setQuery(name);
-}
+};

Powered by Google App Engine
This is Rietveld 408576698