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

Unified Diff: runtime/vm/timeline.h

Issue 1972523003: Improve Observatory Timeline UI (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 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 | « runtime/observatory/web/timeline_message_handler.js ('k') | runtime/vm/timeline.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/timeline.h
diff --git a/runtime/vm/timeline.h b/runtime/vm/timeline.h
index c251c2fe7be7981c12ab23194ac7f5aa64fe8b98..f6879a60b497d676ad82ff06e10e75ada3c39dba 100644
--- a/runtime/vm/timeline.h
+++ b/runtime/vm/timeline.h
@@ -781,7 +781,7 @@ class TimelineEventRingRecorder : public TimelineEventFixedBufferRecorder {
~TimelineEventRingRecorder() {}
const char* name() const {
- return "ring";
+ return "Ring";
}
protected:
@@ -798,7 +798,7 @@ class TimelineEventStartupRecorder : public TimelineEventFixedBufferRecorder {
~TimelineEventStartupRecorder() {}
const char* name() const {
- return "startup";
+ return "Startup";
}
protected:
@@ -821,7 +821,7 @@ class TimelineEventCallbackRecorder : public TimelineEventRecorder {
virtual void OnEvent(TimelineEvent* event) = 0;
const char* name() const {
- return "callback";
+ return "Callback";
}
protected:
@@ -849,7 +849,7 @@ class TimelineEventEndlessRecorder : public TimelineEventRecorder {
void PrintTraceEvent(JSONStream* js, TimelineEventFilter* filter);
const char* name() const {
- return "endless";
+ return "Endless";
}
protected:
« no previous file with comments | « runtime/observatory/web/timeline_message_handler.js ('k') | runtime/vm/timeline.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698