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

Unified Diff: third_party/WebKit/Source/devtools/front_end/profiler/ProfileLauncherView.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/profiler/ProfileLauncherView.js
diff --git a/third_party/WebKit/Source/devtools/front_end/profiler/ProfileLauncherView.js b/third_party/WebKit/Source/devtools/front_end/profiler/ProfileLauncherView.js
index 664b05cf96b6bcbf5b063d8ce1f9cede838b80e3..0e09b19d7c0de1f530fc4b8e4e1deae9d219bc01 100644
--- a/third_party/WebKit/Source/devtools/front_end/profiler/ProfileLauncherView.js
+++ b/third_party/WebKit/Source/devtools/front_end/profiler/ProfileLauncherView.js
@@ -56,7 +56,7 @@ WebInspector.ProfileLauncherView = function(profilesPanel)
this._loadButton = createTextButton(WebInspector.UIString("Load"), this._loadButtonClicked.bind(this), "load-profile");
this._contentElement.appendChild(this._loadButton);
WebInspector.targetManager.observeTargets(this);
-}
+};
WebInspector.ProfileLauncherView.prototype = {
/**
@@ -158,7 +158,7 @@ WebInspector.ProfileLauncherView.prototype = {
},
__proto__: WebInspector.VBox.prototype
-}
+};
/**
@@ -180,12 +180,12 @@ WebInspector.MultiProfileLauncherView = function(profilesPanel)
this._innerContentElement.createChild("div", "flexible-space");
this._typeIdToOptionElement = {};
-}
+};
/** @enum {symbol} */
WebInspector.MultiProfileLauncherView.Events = {
ProfileTypeSelected: Symbol("ProfileTypeSelected")
-}
+};
WebInspector.MultiProfileLauncherView.prototype = {
/**
@@ -258,4 +258,4 @@ WebInspector.MultiProfileLauncherView.prototype = {
},
__proto__: WebInspector.ProfileLauncherView.prototype
-}
+};

Powered by Google App Engine
This is Rietveld 408576698