Index: third_party/WebKit/Source/core/inspector/MainThreadDebugger.h |
diff --git a/third_party/WebKit/Source/core/inspector/MainThreadDebugger.h b/third_party/WebKit/Source/core/inspector/MainThreadDebugger.h |
index 0723e08a8ab7c5e2936958da7ed779bcc85c24f0..263b59121f67c4e028d5b12bb01047240e270fcd 100644 |
--- a/third_party/WebKit/Source/core/inspector/MainThreadDebugger.h |
+++ b/third_party/WebKit/Source/core/inspector/MainThreadDebugger.h |
@@ -68,6 +68,8 @@ public: |
void contextCreated(ScriptState*, LocalFrame*, SecurityOrigin*); |
void contextWillBeDestroyed(ScriptState*); |
+ void installAdditionalCommandLineAPI(v8::Local<v8::Context>, v8::Local<v8::Object>) override; |
+ |
v8::MaybeLocal<v8::Value> memoryInfo(v8::Isolate*, v8::Local<v8::Context>, v8::Local<v8::Object> creationContext) override; |
protected: |
void reportMessageToConsole(v8::Local<v8::Context>, ConsoleMessage*) override; |
@@ -87,6 +89,10 @@ private: |
OwnPtr<InspectorTaskRunner> m_taskRunner; |
static MainThreadDebugger* s_instance; |
+ |
+ static void querySelectorCallback(const v8::FunctionCallbackInfo<v8::Value>&); |
+ static void querySelectorAllCallback(const v8::FunctionCallbackInfo<v8::Value>&); |
+ static void xpathSelectorCallback(const v8::FunctionCallbackInfo<v8::Value>&); |
}; |
} // namespace blink |