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

Unified Diff: Source/core/inspector/InspectorTimelineAgent.cpp

Issue 884753003: Fix template angle bracket syntax in inspector (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Some more fixes Created 5 years, 11 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/core/inspector/InspectorTimelineAgent.h ('k') | Source/core/inspector/InspectorTraceEvents.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/inspector/InspectorTimelineAgent.cpp
diff --git a/Source/core/inspector/InspectorTimelineAgent.cpp b/Source/core/inspector/InspectorTimelineAgent.cpp
index d7719cc347fd662c6d5616dd2d54e0792ba3db7b..0f238334cf472c5cfa537b8dc9bc02fbf0a4334f 100644
--- a/Source/core/inspector/InspectorTimelineAgent.cpp
+++ b/Source/core/inspector/InspectorTimelineAgent.cpp
@@ -174,7 +174,7 @@ private:
};
struct TimelineRecordEntry {
- TimelineRecordEntry(PassRefPtr<TimelineEvent> record, PassRefPtr<JSONObject> data, PassRefPtr<TypeBuilder::Array<TimelineEvent> > children, const String& type)
+ TimelineRecordEntry(PassRefPtr<TimelineEvent> record, PassRefPtr<JSONObject> data, PassRefPtr<TypeBuilder::Array<TimelineEvent>> children, const String& type)
: record(record)
, data(data)
, children(children)
@@ -184,7 +184,7 @@ struct TimelineRecordEntry {
}
RefPtr<TimelineEvent> record;
RefPtr<JSONObject> data;
- RefPtr<TypeBuilder::Array<TimelineEvent> > children;
+ RefPtr<TypeBuilder::Array<TimelineEvent>> children;
String type;
bool skipWhenUnbalanced;
};
@@ -203,7 +203,7 @@ private:
}
RefPtr<TimelineEvent> record;
- RefPtr<TypeBuilder::Array<TimelineEvent> > children;
+ RefPtr<TypeBuilder::Array<TimelineEvent>> children;
#if ENABLE(ASSERT)
String type;
#endif
« no previous file with comments | « Source/core/inspector/InspectorTimelineAgent.h ('k') | Source/core/inspector/InspectorTraceEvents.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698