| Index: Source/core/inspector/InspectorHeapProfilerAgent.cpp
|
| diff --git a/Source/core/inspector/InspectorHeapProfilerAgent.cpp b/Source/core/inspector/InspectorHeapProfilerAgent.cpp
|
| index 6802ae9b513c6178151451f98cb00c7a421304d6..1e556282bd717a59ae0bc5cb67424bf9a67a7c7f 100644
|
| --- a/Source/core/inspector/InspectorHeapProfilerAgent.cpp
|
| +++ b/Source/core/inspector/InspectorHeapProfilerAgent.cpp
|
| @@ -280,7 +280,7 @@ void InspectorHeapProfilerAgent::getObjectByHeapObjectId(ErrorString* error, con
|
| *error = "Invalid heap snapshot object id";
|
| return;
|
| }
|
| - ScriptObject heapObject = ScriptProfiler::objectByHeapObjectId(id);
|
| + ScriptValue heapObject = ScriptProfiler::objectByHeapObjectId(id);
|
| if (heapObject.isEmpty()) {
|
| *error = "Object is not available";
|
| return;
|
|
|