| Index: Source/core/inspector/TimelineRecordFactory.cpp
|
| diff --git a/Source/core/inspector/TimelineRecordFactory.cpp b/Source/core/inspector/TimelineRecordFactory.cpp
|
| index 5c6f757f26dcf7be3d8bb4a5a6022d2a2b794d7b..fb248822ce403debfb08b7cbe56223dc3126920c 100644
|
| --- a/Source/core/inspector/TimelineRecordFactory.cpp
|
| +++ b/Source/core/inspector/TimelineRecordFactory.cpp
|
| @@ -77,9 +77,10 @@ PassRefPtr<JSONObject> TimelineRecordFactory::createGCEventData(size_t usedHeapS
|
| return data.release();
|
| }
|
|
|
| -PassRefPtr<JSONObject> TimelineRecordFactory::createFunctionCallData(const String& scriptName, int scriptLine)
|
| +PassRefPtr<JSONObject> TimelineRecordFactory::createFunctionCallData(int scriptId, const String& scriptName, int scriptLine)
|
| {
|
| RefPtr<JSONObject> data = JSONObject::create();
|
| + data->setString("scriptId", String::number(scriptId));
|
| data->setString("scriptName", scriptName);
|
| data->setNumber("scriptLine", scriptLine);
|
| return data.release();
|
|
|