summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/WebKit/Source/core/inspector/WorkerDebuggerAgent.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/WebKit/Source/core/inspector/WorkerDebuggerAgent.h')
-rw-r--r--chromium/third_party/WebKit/Source/core/inspector/WorkerDebuggerAgent.h19
1 files changed, 9 insertions, 10 deletions
diff --git a/chromium/third_party/WebKit/Source/core/inspector/WorkerDebuggerAgent.h b/chromium/third_party/WebKit/Source/core/inspector/WorkerDebuggerAgent.h
index dee9dbf8e24..2383bfd13b3 100644
--- a/chromium/third_party/WebKit/Source/core/inspector/WorkerDebuggerAgent.h
+++ b/chromium/third_party/WebKit/Source/core/inspector/WorkerDebuggerAgent.h
@@ -39,25 +39,24 @@ namespace WebCore {
class WorkerGlobalScope;
class WorkerThread;
-class WorkerDebuggerAgent : public InspectorDebuggerAgent {
+class WorkerDebuggerAgent FINAL : public InspectorDebuggerAgent {
WTF_MAKE_NONCOPYABLE(WorkerDebuggerAgent);
WTF_MAKE_FAST_ALLOCATED;
public:
- static PassOwnPtr<WorkerDebuggerAgent> create(InstrumentingAgents*, InspectorCompositeState*, WorkerScriptDebugServer*, WorkerGlobalScope*, InjectedScriptManager*);
+ static PassOwnPtr<WorkerDebuggerAgent> create(WorkerScriptDebugServer*, WorkerGlobalScope*, InjectedScriptManager*);
virtual ~WorkerDebuggerAgent();
- static const char debuggerTaskMode[];
static void interruptAndDispatchInspectorCommands(WorkerThread*);
private:
- WorkerDebuggerAgent(InstrumentingAgents*, InspectorCompositeState*, WorkerScriptDebugServer*, WorkerGlobalScope*, InjectedScriptManager*);
+ WorkerDebuggerAgent(WorkerScriptDebugServer*, WorkerGlobalScope*, InjectedScriptManager*);
- virtual void startListeningScriptDebugServer();
- virtual void stopListeningScriptDebugServer();
- virtual WorkerScriptDebugServer& scriptDebugServer();
- virtual InjectedScript injectedScriptForEval(ErrorString*, const int* executionContextId);
- virtual void muteConsole();
- virtual void unmuteConsole();
+ virtual void startListeningScriptDebugServer() OVERRIDE;
+ virtual void stopListeningScriptDebugServer() OVERRIDE;
+ virtual WorkerScriptDebugServer& scriptDebugServer() OVERRIDE;
+ virtual InjectedScript injectedScriptForEval(ErrorString*, const int* executionContextId) OVERRIDE;
+ virtual void muteConsole() OVERRIDE;
+ virtual void unmuteConsole() OVERRIDE;
WorkerScriptDebugServer* m_scriptDebugServer;
WorkerGlobalScope* m_inspectedWorkerGlobalScope;