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

Unified Diff: Source/devtools/front_end/profiler/CPUProfileFlameChart.js

Issue 308643003: DevTools: [JSDoc] Avoid partial arg list annotations in the "profiler" module (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 7 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
« no previous file with comments | « Source/devtools/front_end/externs.js ('k') | Source/devtools/front_end/profiler/CPUProfileView.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/devtools/front_end/profiler/CPUProfileFlameChart.js
diff --git a/Source/devtools/front_end/profiler/CPUProfileFlameChart.js b/Source/devtools/front_end/profiler/CPUProfileFlameChart.js
index 3ebaaf6db0ff8c182fa13eb6f84869989182cc4f..7d3ea8b1f63617e1e338fadf6c505517aa18035f 100644
--- a/Source/devtools/front_end/profiler/CPUProfileFlameChart.js
+++ b/Source/devtools/front_end/profiler/CPUProfileFlameChart.js
@@ -120,15 +120,16 @@ WebInspector.CPUFlameChartDataProvider.prototype = {
* @param {number} depth
* @param {number} duration
* @param {number} startTime
- * @param {!Object} node
+ * @param {number} selfTime
+ * @param {!ProfilerAgent.CPUProfileNode} node
*/
function ChartEntry(depth, duration, startTime, selfTime, node)
{
this.depth = depth;
this.duration = duration;
this.startTime = startTime;
- this.node = node;
this.selfTime = selfTime;
+ this.node = node;
}
/** @type {!Array.<?ChartEntry>} */
« no previous file with comments | « Source/devtools/front_end/externs.js ('k') | Source/devtools/front_end/profiler/CPUProfileView.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698