| 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
|
|
|