| Index: third_party/WebKit/Source/platform/v8_inspector/V8HeapProfilerAgentImpl.cpp
|
| diff --git a/third_party/WebKit/Source/platform/v8_inspector/V8HeapProfilerAgentImpl.cpp b/third_party/WebKit/Source/platform/v8_inspector/V8HeapProfilerAgentImpl.cpp
|
| index 9fdf3898de8e8ee15336910524a6a2ec719f488e..08b022959c7846e5b45f907b33e1421790b83ff6 100644
|
| --- a/third_party/WebKit/Source/platform/v8_inspector/V8HeapProfilerAgentImpl.cpp
|
| +++ b/third_party/WebKit/Source/platform/v8_inspector/V8HeapProfilerAgentImpl.cpp
|
| @@ -5,6 +5,7 @@
|
| #include "platform/v8_inspector/V8HeapProfilerAgentImpl.h"
|
|
|
| #include "platform/v8_inspector/InjectedScript.h"
|
| +#include "platform/v8_inspector/V8Debugger.h"
|
| #include "platform/v8_inspector/V8InspectorImpl.h"
|
| #include "platform/v8_inspector/V8InspectorSessionImpl.h"
|
| #include "platform/v8_inspector/V8StringUtil.h"
|
| @@ -50,7 +51,7 @@ public:
|
|
|
| const char* GetName(v8::Local<v8::Object> object) override
|
| {
|
| - int contextId = V8InspectorImpl::contextId(object->CreationContext());
|
| + int contextId = V8Debugger::contextId(object->CreationContext());
|
| if (!contextId)
|
| return "";
|
| ErrorString errorString;
|
|
|