| Index: third_party/WebKit/Source/web/InspectorEmulationAgent.h
|
| diff --git a/third_party/WebKit/Source/web/InspectorEmulationAgent.h b/third_party/WebKit/Source/web/InspectorEmulationAgent.h
|
| index fdff382f24c5b950f5eaf629348e1f41f262ec64..dfc760b0f1e66f998523cedb3febddc06ef3d2f1 100644
|
| --- a/third_party/WebKit/Source/web/InspectorEmulationAgent.h
|
| +++ b/third_party/WebKit/Source/web/InspectorEmulationAgent.h
|
| @@ -5,7 +5,6 @@
|
| #ifndef InspectorEmulationAgent_h
|
| #define InspectorEmulationAgent_h
|
|
|
| -#include "core/InspectorFrontend.h"
|
| #include "core/inspector/InspectorBaseAgent.h"
|
|
|
| namespace blink {
|
| @@ -15,7 +14,7 @@ class WebViewImpl;
|
|
|
| using ErrorString = String;
|
|
|
| -class InspectorEmulationAgent final : public InspectorBaseAgent<InspectorEmulationAgent, InspectorFrontend::Emulation>, public InspectorBackendDispatcher::EmulationCommandHandler {
|
| +class InspectorEmulationAgent final : public InspectorBaseAgent<InspectorEmulationAgent, protocol::Frontend::Emulation>, public protocol::Dispatcher::EmulationCommandHandler {
|
| WTF_MAKE_NONCOPYABLE(InspectorEmulationAgent);
|
| public:
|
| class Client {
|
| @@ -28,7 +27,7 @@ public:
|
| static PassOwnPtrWillBeRawPtr<InspectorEmulationAgent> create(WebLocalFrameImpl*, Client*);
|
| ~InspectorEmulationAgent() override;
|
|
|
| - // InspectorBackendDispatcher::EmulationCommandHandler implementation.
|
| + // protocol::Dispatcher::EmulationCommandHandler implementation.
|
| void resetPageScaleFactor(ErrorString*) override;
|
| void setPageScaleFactor(ErrorString*, double pageScaleFactor) override;
|
| void setScriptExecutionDisabled(ErrorString*, bool) override;
|
|
|