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

Unified Diff: third_party/WebKit/Source/devtools/front_end/ui/SplitWidget.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/SplitWidget.js
diff --git a/third_party/WebKit/Source/devtools/front_end/ui/SplitWidget.js b/third_party/WebKit/Source/devtools/front_end/ui/SplitWidget.js
index 894f333a07af7c89aa09957a0041230bbb6a3866..2800c612939f5c1964931e608e651b43b562ce83 100644
--- a/third_party/WebKit/Source/devtools/front_end/ui/SplitWidget.js
+++ b/third_party/WebKit/Source/devtools/front_end/ui/SplitWidget.js
@@ -67,7 +67,7 @@ WebInspector.SplitWidget = function(isVertical, secondIsSidebar, settingName, de
// Should be called after isVertical has the right value.
this.installResizer(this._resizerElement);
-}
+};
/** @typedef {{showMode: string, size: number}} */
WebInspector.SplitWidget.SettingForOrientation;
@@ -76,13 +76,13 @@ WebInspector.SplitWidget.ShowMode = {
Both: "Both",
OnlyMain: "OnlyMain",
OnlySidebar: "OnlySidebar"
-}
+};
/** @enum {symbol} */
WebInspector.SplitWidget.Events = {
SidebarSizeChanged: Symbol("SidebarSizeChanged"),
ShowModeChanged: Symbol("ShowModeChanged")
-}
+};
WebInspector.SplitWidget.MinPadding = 20;
@@ -918,4 +918,4 @@ WebInspector.SplitWidget.prototype = {
},
__proto__: WebInspector.Widget.prototype
-}
+};

Powered by Google App Engine
This is Rietveld 408576698