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

Unified Diff: third_party/WebKit/Source/devtools/front_end/timeline/TimelineController.js

Issue 2279513002: DevTools: make hitCount optional & experimental in Profiler domain. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 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/timeline/TimelineController.js
diff --git a/third_party/WebKit/Source/devtools/front_end/timeline/TimelineController.js b/third_party/WebKit/Source/devtools/front_end/timeline/TimelineController.js
index 7dd34e4c38591794fa2dd772e98b28a6bffc6dc8..d7ca7c8b726dea720632991c3986066bf2b09eca 100644
--- a/third_party/WebKit/Source/devtools/front_end/timeline/TimelineController.js
+++ b/third_party/WebKit/Source/devtools/front_end/timeline/TimelineController.js
@@ -135,7 +135,7 @@ WebInspector.TimelineController.prototype = {
/**
* @param {number} targetId
* @param {?Protocol.Error} error
- * @param {?ProfilerAgent.CPUProfile} cpuProfile
+ * @param {?ProfilerAgent.Profile} cpuProfile
*/
_addCpuProfile: function(targetId, error, cpuProfile)
{
@@ -222,7 +222,7 @@ WebInspector.TimelineController.prototype = {
/**
* @param {number} pid
* @param {number} tid
- * @param {?ProfilerAgent.CPUProfile} cpuProfile
+ * @param {?ProfilerAgent.Profile} cpuProfile
*/
_injectCpuProfileEvent: function(pid, tid, cpuProfile)
{

Powered by Google App Engine
This is Rietveld 408576698