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

Unified Diff: third_party/WebKit/Source/devtools/front_end/profiler/ProfileView.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/ProfileView.js
diff --git a/third_party/WebKit/Source/devtools/front_end/profiler/ProfileView.js b/third_party/WebKit/Source/devtools/front_end/profiler/ProfileView.js
index 3976560684b8900987647b6d2e934ef3948b5308..81d4037b27650ad2690d93fa7473e979d110b2c6 100644
--- a/third_party/WebKit/Source/devtools/front_end/profiler/ProfileView.js
+++ b/third_party/WebKit/Source/devtools/front_end/profiler/ProfileView.js
@@ -63,14 +63,14 @@ WebInspector.ProfileView = function(nodeFormatter, viewTypes)
this._changeView();
if (this._flameChart)
this._flameChart.update();
-}
+};
/** @enum {string} */
WebInspector.ProfileView.ViewTypes = {
Flame: "Flame",
Tree: "Tree",
Heavy: "Heavy"
-}
+};
/**
* @param {!Array<!{title: string, value: string}>} entryInfo
@@ -85,7 +85,7 @@ WebInspector.ProfileView.buildPopoverTable = function(entryInfo)
row.createChild("td").textContent = entry.value;
}
return table;
-}
+};
WebInspector.ProfileView.prototype = {
focus: function()
@@ -383,7 +383,7 @@ WebInspector.ProfileView.prototype = {
},
__proto__: WebInspector.SimpleView.prototype
-}
+};
/**
* @constructor
@@ -399,7 +399,7 @@ WebInspector.WritableProfileHeader = function(target, type, title)
WebInspector.ProfileHeader.call(this, target, type, title || WebInspector.UIString("Profile %d", type.nextProfileUid()));
this._debuggerModel = WebInspector.DebuggerModel.fromTarget(target);
this._tempFile = null;
-}
+};
WebInspector.WritableProfileHeader.prototype = {
/**
@@ -605,4 +605,4 @@ WebInspector.WritableProfileHeader.prototype = {
},
__proto__: WebInspector.ProfileHeader.prototype
-}
+};

Powered by Google App Engine
This is Rietveld 408576698