| Index: third_party/WebKit/Source/core/inspector/InspectorInspectorAgent.cpp
|
| diff --git a/third_party/WebKit/Source/core/inspector/InspectorInspectorAgent.cpp b/third_party/WebKit/Source/core/inspector/InspectorInspectorAgent.cpp
|
| index d5a5c8180f6ca1970374495b9530e91f343970c6..f427523be3d5aa03f1bf365dbdf11adb8c8fa074 100644
|
| --- a/third_party/WebKit/Source/core/inspector/InspectorInspectorAgent.cpp
|
| +++ b/third_party/WebKit/Source/core/inspector/InspectorInspectorAgent.cpp
|
| @@ -32,7 +32,6 @@
|
|
|
| #include "bindings/core/v8/DOMWrapperWorld.h"
|
| #include "bindings/core/v8/ScriptController.h"
|
| -#include "core/InspectorFrontend.h"
|
| #include "core/dom/Document.h"
|
| #include "core/frame/LocalFrame.h"
|
| #include "core/loader/DocumentLoader.h"
|
| @@ -47,7 +46,7 @@ static const char inspectorAgentEnabled[] = "inspectorAgentEnabled";
|
| }
|
|
|
| InspectorInspectorAgent::InspectorInspectorAgent()
|
| - : InspectorBaseAgent<InspectorInspectorAgent, InspectorFrontend::Inspector>("Inspector")
|
| + : InspectorBaseAgent<InspectorInspectorAgent, protocol::Frontend::Inspector>("Inspector")
|
| {
|
| }
|
|
|
| @@ -87,7 +86,7 @@ void InspectorInspectorAgent::evaluateForTestInFrontend(long callId, const Strin
|
| }
|
| }
|
|
|
| -void InspectorInspectorAgent::inspect(PassRefPtr<TypeBuilder::Runtime::RemoteObject> objectToInspect, PassRefPtr<JSONObject> hints)
|
| +void InspectorInspectorAgent::inspect(PassRefPtr<protocol::TypeBuilder::Runtime::RemoteObject> objectToInspect, PassRefPtr<JSONObject> hints)
|
| {
|
| if (frontend() && m_state->booleanProperty(InspectorAgentState::inspectorAgentEnabled, false))
|
| frontend()->inspect(objectToInspect, hints);
|
|
|