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

Unified Diff: runtime/vm/profiler_service.h

Issue 1541893002: Support narrowing a cpu profile to a given time window (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years 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 | « runtime/vm/profiler.cc ('k') | runtime/vm/profiler_service.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/profiler_service.h
diff --git a/runtime/vm/profiler_service.h b/runtime/vm/profiler_service.h
index e9315984db08cf8233dd53048d46f0cc00ae341f..15f3f7d526c8041691c5bc672af32fb2865c297c 100644
--- a/runtime/vm/profiler_service.h
+++ b/runtime/vm/profiler_service.h
@@ -396,14 +396,20 @@ class ProfilerService : public AllStatic {
static void PrintJSON(JSONStream* stream,
Profile::TagOrder tag_order,
- intptr_t extra_tags);
+ intptr_t extra_tags,
+ int64_t time_origin_micros,
+ int64_t time_extent_micros);
static void PrintAllocationJSON(JSONStream* stream,
Profile::TagOrder tag_order,
- const Class& cls);
+ const Class& cls,
+ int64_t time_origin_micros,
+ int64_t time_extent_micros);
static void PrintTimelineJSON(JSONStream* stream,
- Profile::TagOrder tag_order);
+ Profile::TagOrder tag_order,
+ int64_t time_origin_micros,
+ int64_t time_extent_micros);
static void ClearSamples();
« no previous file with comments | « runtime/vm/profiler.cc ('k') | runtime/vm/profiler_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698