| Index: Source/core/inspector/InspectorDebuggerAgent.h
|
| diff --git a/Source/core/inspector/InspectorDebuggerAgent.h b/Source/core/inspector/InspectorDebuggerAgent.h
|
| index 703743015c38ea01db671d3137446c31115725cd..48681c4f0a383da6ab805c5d29d64e6fa3868517 100644
|
| --- a/Source/core/inspector/InspectorDebuggerAgent.h
|
| +++ b/Source/core/inspector/InspectorDebuggerAgent.h
|
| @@ -197,14 +197,14 @@ public:
|
| protected:
|
| explicit InspectorDebuggerAgent(InjectedScriptManager*);
|
|
|
| - virtual void startListeningScriptDebugServer() = 0;
|
| + virtual bool startListeningScriptDebugServer() = 0;
|
| virtual void stopListeningScriptDebugServer() = 0;
|
| virtual void muteConsole() = 0;
|
| virtual void unmuteConsole() = 0;
|
| InjectedScriptManager* injectedScriptManager() { return m_injectedScriptManager; }
|
| virtual InjectedScript injectedScriptForEval(ErrorString*, const int* executionContextId) = 0;
|
|
|
| - virtual void enable();
|
| + virtual bool enable();
|
| virtual void disable();
|
| SkipPauseRequest didPause(ScriptState*, const ScriptValue& callFrames, const ScriptValue& exception, const Vector<String>& hitBreakpoints, bool isPromiseRejection) final;
|
| void didContinue() final;
|
|
|