| Index: third_party/WebKit/Source/platform/v8_inspector/V8Console.cpp
|
| diff --git a/third_party/WebKit/Source/platform/v8_inspector/V8Console.cpp b/third_party/WebKit/Source/platform/v8_inspector/V8Console.cpp
|
| index 51a682ddb0677cfc58a38b2e2f289340391c118f..be0f20b7c6765d3d186cb5e74dfc6756bb9b6720 100644
|
| --- a/third_party/WebKit/Source/platform/v8_inspector/V8Console.cpp
|
| +++ b/third_party/WebKit/Source/platform/v8_inspector/V8Console.cpp
|
| @@ -623,7 +623,7 @@ void V8Console::inspectedObject(const v8::FunctionCallbackInfo<v8::Value>& info,
|
| ASSERT(num < V8InspectorSessionImpl::kInspectedObjectBufferSize);
|
| ConsoleHelper helper(info);
|
| if (V8InspectorSessionImpl* session = helper.currentSession()) {
|
| - V8RuntimeAgent::Inspectable* object = session->inspectedObject(num);
|
| + V8InspectorSession::Inspectable* object = session->inspectedObject(num);
|
| v8::Isolate* isolate = info.GetIsolate();
|
| if (object)
|
| info.GetReturnValue().Set(object->get(isolate->GetCurrentContext()));
|
|
|