Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(608)

Unified Diff: third_party/WebKit/Source/web/InspectorEmulationAgent.h

Issue 1696513002: DevTools: move protocol-related generators into inspector subfolder. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;
« no previous file with comments | « third_party/WebKit/Source/platform/platform_generated.gyp ('k') | third_party/WebKit/Source/web/InspectorEmulationAgent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698