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

Unified Diff: third_party/WebKit/Source/devtools/front_end/ui/InspectorView.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/InspectorView.js
diff --git a/third_party/WebKit/Source/devtools/front_end/ui/InspectorView.js b/third_party/WebKit/Source/devtools/front_end/ui/InspectorView.js
index b2ddaebb770832106bcba90f141aff6f4c3000f0..5ebebac6e57692222da1d821b85ce007058903c6 100644
--- a/third_party/WebKit/Source/devtools/front_end/ui/InspectorView.js
+++ b/third_party/WebKit/Source/devtools/front_end/ui/InspectorView.js
@@ -80,7 +80,7 @@ WebInspector.InspectorView = function()
var panelName = /** @type {string} */ (event.data);
this.showPanel(panelName);
}
-}
+};
/**
* @return {!WebInspector.InspectorView}
@@ -88,7 +88,7 @@ WebInspector.InspectorView = function()
WebInspector.InspectorView.instance = function()
{
return /** @type {!WebInspector.InspectorView} */ (self.runtime.sharedInstance(WebInspector.InspectorView));
-}
+};
WebInspector.InspectorView.prototype = {
wasShown: function()
@@ -324,7 +324,7 @@ WebInspector.inspectorView;
*/
WebInspector.InspectorView.DrawerToggleActionDelegate = function()
{
-}
+};
WebInspector.InspectorView.DrawerToggleActionDelegate.prototype = {
/**
@@ -341,4 +341,4 @@ WebInspector.InspectorView.DrawerToggleActionDelegate.prototype = {
WebInspector.inspectorView._showDrawer(true);
return true;
}
-}
+};

Powered by Google App Engine
This is Rietveld 408576698