Index: third_party/WebKit/Source/devtools/front_end/profiler/CPUProfileView.js |
diff --git a/third_party/WebKit/Source/devtools/front_end/profiler/CPUProfileView.js b/third_party/WebKit/Source/devtools/front_end/profiler/CPUProfileView.js |
index d05481c0b170650c48806bd968eafdd5954d068e..91f2cf2bfca88476051cd797619d8413946e93d9 100644 |
--- a/third_party/WebKit/Source/devtools/front_end/profiler/CPUProfileView.js |
+++ b/third_party/WebKit/Source/devtools/front_end/profiler/CPUProfileView.js |
@@ -36,7 +36,7 @@ WebInspector.CPUProfileView = function(profileHeader) |
this.adjustedTotal = this.profile.profileHead.total; |
this.adjustedTotal -= this.profile.idleNode ? this.profile.idleNode.total : 0; |
WebInspector.ProfileView.call(this, new WebInspector.CPUProfileView.NodeFormatter(this)); |
-} |
+}; |
WebInspector.CPUProfileView.prototype = { |
/** |
@@ -74,7 +74,7 @@ WebInspector.CPUProfileView.prototype = { |
}, |
__proto__: WebInspector.ProfileView.prototype |
-} |
+}; |
/** |
* @constructor |
@@ -91,7 +91,7 @@ WebInspector.CPUProfileType = function() |
WebInspector.CPUProfileType.instance = this; |
WebInspector.targetManager.addModelListener(WebInspector.CPUProfilerModel, WebInspector.CPUProfilerModel.Events.ConsoleProfileStarted, this._consoleProfileStarted, this); |
WebInspector.targetManager.addModelListener(WebInspector.CPUProfilerModel, WebInspector.CPUProfilerModel.Events.ConsoleProfileFinished, this._consoleProfileFinished, this); |
-} |
+}; |
WebInspector.CPUProfileType.TypeId = "CPU"; |
@@ -276,7 +276,7 @@ WebInspector.CPUProfileType.prototype = { |
}, |
__proto__: WebInspector.ProfileType.prototype |
-} |
+}; |
/** |
* @constructor |
@@ -288,7 +288,7 @@ WebInspector.CPUProfileType.prototype = { |
WebInspector.CPUProfileHeader = function(target, type, title) |
{ |
WebInspector.WritableProfileHeader.call(this, target, type, title); |
-} |
+}; |
WebInspector.CPUProfileHeader.prototype = { |
/** |
@@ -309,7 +309,7 @@ WebInspector.CPUProfileHeader.prototype = { |
}, |
__proto__: WebInspector.WritableProfileHeader.prototype |
-} |
+}; |
/** |
* @implements {WebInspector.ProfileDataGridNode.Formatter} |
@@ -318,7 +318,7 @@ WebInspector.CPUProfileHeader.prototype = { |
WebInspector.CPUProfileView.NodeFormatter = function(profileView) |
{ |
this._profileView = profileView; |
-} |
+}; |
WebInspector.CPUProfileView.NodeFormatter.prototype = { |
/** |
@@ -351,7 +351,7 @@ WebInspector.CPUProfileView.NodeFormatter.prototype = { |
{ |
return this._profileView.linkifier().maybeLinkifyConsoleCallFrame(this._profileView.target(), node.profileNode.callFrame, "profile-node-file"); |
} |
-} |
+}; |
/** |
* @constructor |
@@ -363,7 +363,7 @@ WebInspector.CPUFlameChartDataProvider = function(cpuProfile, target) |
{ |
WebInspector.ProfileFlameChartDataProvider.call(this, target); |
this._cpuProfile = cpuProfile; |
-} |
+}; |
WebInspector.CPUFlameChartDataProvider.prototype = { |
/** |
@@ -498,4 +498,4 @@ WebInspector.CPUFlameChartDataProvider.prototype = { |
}, |
__proto__: WebInspector.ProfileFlameChartDataProvider.prototype |
-} |
+}; |