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

Unified Diff: third_party/WebKit/Source/core/inspector/v8/public/V8DebuggerAgent.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/core/inspector/v8/public/V8DebuggerAgent.h
diff --git a/third_party/WebKit/Source/core/inspector/v8/public/V8DebuggerAgent.h b/third_party/WebKit/Source/core/inspector/v8/public/V8DebuggerAgent.h
index 744c55aa2cc19e9dd2ef9daf144cd20bacb853e3..0c00bdfa25c535cc17432d512f8d54ce2b71bc41 100644
--- a/third_party/WebKit/Source/core/inspector/v8/public/V8DebuggerAgent.h
+++ b/third_party/WebKit/Source/core/inspector/v8/public/V8DebuggerAgent.h
@@ -6,14 +6,14 @@
#define V8DebuggerAgent_h
#include "core/CoreExport.h"
-#include "core/InspectorBackendDispatcher.h"
#include "core/inspector/v8/public/V8Debugger.h"
+#include "platform/inspector_protocol/Dispatcher.h"
namespace blink {
class V8RuntimeAgent;
-class CORE_EXPORT V8DebuggerAgent : public InspectorBackendDispatcher::DebuggerCommandHandler, public V8Debugger::Agent<InspectorFrontend::Debugger> {
+class CORE_EXPORT V8DebuggerAgent : public protocol::Dispatcher::DebuggerCommandHandler, public V8Debugger::Agent<protocol::Frontend::Debugger> {
public:
static const char backtraceObjectGroup[];
@@ -21,11 +21,11 @@ public:
virtual ~V8DebuggerAgent() { }
// API for the embedder to report native activities.
- virtual void schedulePauseOnNextStatement(InspectorFrontend::Debugger::Reason::Enum breakReason, PassRefPtr<JSONObject> data) = 0;
+ virtual void schedulePauseOnNextStatement(protocol::Frontend::Debugger::Reason::Enum breakReason, PassRefPtr<JSONObject> data) = 0;
virtual void cancelPauseOnNextStatement() = 0;
virtual bool canBreakProgram() = 0;
- virtual void breakProgram(InspectorFrontend::Debugger::Reason::Enum breakReason, PassRefPtr<JSONObject> data) = 0;
- virtual void breakProgramOnException(InspectorFrontend::Debugger::Reason::Enum breakReason, PassRefPtr<JSONObject> data) = 0;
+ virtual void breakProgram(protocol::Frontend::Debugger::Reason::Enum breakReason, PassRefPtr<JSONObject> data) = 0;
+ virtual void breakProgramOnException(protocol::Frontend::Debugger::Reason::Enum breakReason, PassRefPtr<JSONObject> data) = 0;
virtual void willExecuteScript(int scriptId) = 0;
virtual void didExecuteScript() = 0;
virtual void reset() = 0;

Powered by Google App Engine
This is Rietveld 408576698