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

Side by Side Diff: Source/core/inspector/WorkerRuntimeAgent.h

Issue 299803003: Add isPausedWorker command to Runtime and use it to auto attach DevTools to ServiceWorker. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 7 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2011 Google Inc. All rights reserved. 2 * Copyright (C) 2011 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 { 44 {
45 return adoptPtr(new WorkerRuntimeAgent(injectedScriptManager, scriptDebu gServer, context)); 45 return adoptPtr(new WorkerRuntimeAgent(injectedScriptManager, scriptDebu gServer, context));
46 } 46 }
47 virtual ~WorkerRuntimeAgent(); 47 virtual ~WorkerRuntimeAgent();
48 48
49 virtual void init() OVERRIDE; 49 virtual void init() OVERRIDE;
50 virtual void enable(ErrorString*) OVERRIDE; 50 virtual void enable(ErrorString*) OVERRIDE;
51 51
52 // Protocol commands. 52 // Protocol commands.
53 virtual void run(ErrorString*) OVERRIDE; 53 virtual void run(ErrorString*) OVERRIDE;
54 virtual void isPausedWorker(ErrorString*, bool* out_result) OVERRIDE;
54 55
55 void willEvaluateWorkerScript(WorkerGlobalScope*, int workerThreadStartMode) ; 56 void willEvaluateWorkerScript(WorkerGlobalScope*, int workerThreadStartMode) ;
56 57
57 private: 58 private:
58 WorkerRuntimeAgent(InjectedScriptManager*, ScriptDebugServer*, WorkerGlobalS cope*); 59 WorkerRuntimeAgent(InjectedScriptManager*, ScriptDebugServer*, WorkerGlobalS cope*);
59 virtual InjectedScript injectedScriptForEval(ErrorString*, const int* execut ionContextId) OVERRIDE; 60 virtual InjectedScript injectedScriptForEval(ErrorString*, const int* execut ionContextId) OVERRIDE;
60 virtual void muteConsole() OVERRIDE; 61 virtual void muteConsole() OVERRIDE;
61 virtual void unmuteConsole() OVERRIDE; 62 virtual void unmuteConsole() OVERRIDE;
62 WorkerGlobalScope* m_workerGlobalScope; 63 WorkerGlobalScope* m_workerGlobalScope;
63 bool m_paused; 64 bool m_paused;
64 }; 65 };
65 66
66 } // namespace WebCore 67 } // namespace WebCore
67 68
68 #endif // !defined(InspectorPagerAgent_h) 69 #endif // !defined(InspectorPagerAgent_h)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698