| OLD | NEW |
| 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 16 matching lines...) Expand all Loading... |
| 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 29 */ | 29 */ |
| 30 | 30 |
| 31 #ifndef WorkerConsoleAgent_h | 31 #ifndef WorkerConsoleAgent_h |
| 32 #define WorkerConsoleAgent_h | 32 #define WorkerConsoleAgent_h |
| 33 | 33 |
| 34 #include "InspectorConsoleAgent.h" | 34 #include "InspectorConsoleAgent.h" |
| 35 #include <wtf/PassOwnPtr.h> | 35 #include <wtf/PassOwnPtr.h> |
| 36 | 36 |
| 37 #if ENABLE(INSPECTOR) && ENABLE(WORKERS) | 37 #if ENABLE(WORKERS) |
| 38 | 38 |
| 39 namespace WebCore { | 39 namespace WebCore { |
| 40 | 40 |
| 41 class WorkerConsoleAgent : public InspectorConsoleAgent { | 41 class WorkerConsoleAgent : public InspectorConsoleAgent { |
| 42 WTF_MAKE_NONCOPYABLE(WorkerConsoleAgent); | 42 WTF_MAKE_NONCOPYABLE(WorkerConsoleAgent); |
| 43 public: | 43 public: |
| 44 static PassOwnPtr<WorkerConsoleAgent> create(InstrumentingAgents* instrument
ingAgents, InspectorCompositeState* state, InjectedScriptManager* injectedScript
Manager) | 44 static PassOwnPtr<WorkerConsoleAgent> create(InstrumentingAgents* instrument
ingAgents, InspectorCompositeState* state, InjectedScriptManager* injectedScript
Manager) |
| 45 { | 45 { |
| 46 return adoptPtr(new WorkerConsoleAgent(instrumentingAgents, state, injec
tedScriptManager)); | 46 return adoptPtr(new WorkerConsoleAgent(instrumentingAgents, state, injec
tedScriptManager)); |
| 47 } | 47 } |
| 48 virtual ~WorkerConsoleAgent(); | 48 virtual ~WorkerConsoleAgent(); |
| 49 | 49 |
| 50 virtual bool isWorkerAgent() OVERRIDE { return true; } | 50 virtual bool isWorkerAgent() OVERRIDE { return true; } |
| 51 | 51 |
| 52 private: | 52 private: |
| 53 WorkerConsoleAgent(InstrumentingAgents*, InspectorCompositeState*, InjectedS
criptManager*); | 53 WorkerConsoleAgent(InstrumentingAgents*, InspectorCompositeState*, InjectedS
criptManager*); |
| 54 virtual void addInspectedNode(ErrorString*, int nodeId); | 54 virtual void addInspectedNode(ErrorString*, int nodeId); |
| 55 virtual bool developerExtrasEnabled(); | 55 virtual bool developerExtrasEnabled(); |
| 56 }; | 56 }; |
| 57 | 57 |
| 58 } // namespace WebCore | 58 } // namespace WebCore |
| 59 | 59 |
| 60 #endif // ENABLE(INSPECTOR) && ENABLE(WORKERS) | 60 #endif // ENABLE(WORKERS) |
| 61 | 61 |
| 62 #endif // !defined(WorkerConsoleAgent_h) | 62 #endif // !defined(WorkerConsoleAgent_h) |
| OLD | NEW |