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

Unified Diff: third_party/WebKit/Source/devtools/front_end/sources/StyleSheetOutlineDialog.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/StyleSheetOutlineDialog.js
diff --git a/third_party/WebKit/Source/devtools/front_end/sources/StyleSheetOutlineDialog.js b/third_party/WebKit/Source/devtools/front_end/sources/StyleSheetOutlineDialog.js
index 651733f893f6290fb3f29ba819d25a5bb8137466..1dfad8034a31f7037cd3fddacdc23a193534ea5c 100644
--- a/third_party/WebKit/Source/devtools/front_end/sources/StyleSheetOutlineDialog.js
+++ b/third_party/WebKit/Source/devtools/front_end/sources/StyleSheetOutlineDialog.js
@@ -39,7 +39,7 @@ WebInspector.StyleSheetOutlineDialog = function(uiSourceCode, selectItemCallback
this._cssParser = new WebInspector.CSSParser();
this._cssParser.addEventListener(WebInspector.CSSParser.Events.RulesParsed, this.refresh.bind(this));
this._cssParser.parse(uiSourceCode.workingCopy());
-}
+};
/**
* @param {!WebInspector.UISourceCode} uiSourceCode
@@ -49,7 +49,7 @@ WebInspector.StyleSheetOutlineDialog.show = function(uiSourceCode, selectItemCal
{
WebInspector.StyleSheetOutlineDialog._instanceForTests = new WebInspector.StyleSheetOutlineDialog(uiSourceCode, selectItemCallback);
new WebInspector.FilteredListWidget(WebInspector.StyleSheetOutlineDialog._instanceForTests).showAsDialog();
-}
+};
WebInspector.StyleSheetOutlineDialog.prototype = {
/**
@@ -118,4 +118,4 @@ WebInspector.StyleSheetOutlineDialog.prototype = {
},
__proto__: WebInspector.FilteredListWidget.Delegate.prototype
-}
+};

Powered by Google App Engine
This is Rietveld 408576698