summaryrefslogtreecommitdiff
path: root/deps/v8/third_party/inspector_protocol/lib/DispatcherBase_h.template
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/third_party/inspector_protocol/lib/DispatcherBase_h.template')
-rw-r--r--deps/v8/third_party/inspector_protocol/lib/DispatcherBase_h.template3
1 files changed, 1 insertions, 2 deletions
diff --git a/deps/v8/third_party/inspector_protocol/lib/DispatcherBase_h.template b/deps/v8/third_party/inspector_protocol/lib/DispatcherBase_h.template
index 5404281dc6..d70a4afe71 100644
--- a/deps/v8/third_party/inspector_protocol/lib/DispatcherBase_h.template
+++ b/deps/v8/third_party/inspector_protocol/lib/DispatcherBase_h.template
@@ -85,8 +85,6 @@ public:
explicit DispatcherBase(FrontendChannel*);
virtual ~DispatcherBase();
- static bool getCommandName(const String& message, String* result);
-
virtual DispatchResponse::Status dispatch(int callId, const String& method, std::unique_ptr<protocol::DictionaryValue> messageObject) = 0;
void sendResponse(int callId, const DispatchResponse&, std::unique_ptr<protocol::DictionaryValue> result);
@@ -118,6 +116,7 @@ public:
FrontendChannel* channel() { return m_frontendChannel; }
bool fallThroughForNotFound() { return m_fallThroughForNotFound; }
void setFallThroughForNotFound(bool);
+ bool getCommandName(const String& message, String* method, std::unique_ptr<protocol::DictionaryValue>* parsedMessage);
virtual ~UberDispatcher();
private: