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

Unified Diff: third_party/WebKit/Source/devtools/front_end/ui/Panel.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/Panel.js
diff --git a/third_party/WebKit/Source/devtools/front_end/ui/Panel.js b/third_party/WebKit/Source/devtools/front_end/ui/Panel.js
index 087e20df927cff2706d26e627d5be3b1130839ed..b791fc292b61c2defc83216a626c9d57ead35f1e 100644
--- a/third_party/WebKit/Source/devtools/front_end/ui/Panel.js
+++ b/third_party/WebKit/Source/devtools/front_end/ui/Panel.js
@@ -46,7 +46,7 @@ WebInspector.Panel = function(name)
WebInspector.panels[name] = this;
this._shortcuts = /** !Object.<number, function(Event=):boolean> */ ({});
-}
+};
// Should by in sync with style declarations.
WebInspector.Panel.counterRightMargin = 25;
@@ -119,7 +119,7 @@ WebInspector.Panel.prototype = {
},
__proto__: WebInspector.VBox.prototype
-}
+};
/**
* @extends {WebInspector.Panel}
@@ -142,7 +142,7 @@ WebInspector.PanelWithSidebar = function(name, defaultWidth)
this._panelSplitWidget.setSidebarWidget(this._sidebarWidget);
this._sidebarWidget.element.classList.add("panel-sidebar");
-}
+};
WebInspector.PanelWithSidebar.prototype = {
/**
@@ -170,4 +170,4 @@ WebInspector.PanelWithSidebar.prototype = {
},
__proto__: WebInspector.Panel.prototype
-}
+};

Powered by Google App Engine
This is Rietveld 408576698