summaryrefslogtreecommitdiffstats
path: root/WebCore/inspector/TimelineRecordFactory.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/inspector/TimelineRecordFactory.cpp')
-rw-r--r--WebCore/inspector/TimelineRecordFactory.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/WebCore/inspector/TimelineRecordFactory.cpp b/WebCore/inspector/TimelineRecordFactory.cpp
index ad9fdec..e1c2bbb 100644
--- a/WebCore/inspector/TimelineRecordFactory.cpp
+++ b/WebCore/inspector/TimelineRecordFactory.cpp
@@ -49,7 +49,7 @@ PassRefPtr<InspectorObject> TimelineRecordFactory::createGenericRecord(double st
RefPtr<InspectorArray> stackTrace = InspectorArray::create();
if (ScriptCallStack::stackTrace(5, stackTrace))
- record->set("stackTrace", stackTrace);
+ record->setArray("stackTrace", stackTrace);
return record.release();
}