| 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 29 matching lines...) Expand all Loading... |
| 40 #include "wtf/RefPtr.h" | 40 #include "wtf/RefPtr.h" |
| 41 | 41 |
| 42 namespace blink { | 42 namespace blink { |
| 43 | 43 |
| 44 class AsyncCallTracker; | 44 class AsyncCallTracker; |
| 45 class InjectedScriptManager; | 45 class InjectedScriptManager; |
| 46 class InspectorBackendDispatcher; | 46 class InspectorBackendDispatcher; |
| 47 class InspectorFrontend; | 47 class InspectorFrontend; |
| 48 class InspectorFrontendChannel; | 48 class InspectorFrontendChannel; |
| 49 class InspectorStateClient; | 49 class InspectorStateClient; |
| 50 class InspectorTaskRunner; |
| 50 class InstrumentingAgents; | 51 class InstrumentingAgents; |
| 51 class WorkerDebuggerAgent; | 52 class WorkerDebuggerAgent; |
| 52 class WorkerGlobalScope; | 53 class WorkerGlobalScope; |
| 53 class WorkerRuntimeAgent; | 54 class WorkerRuntimeAgent; |
| 54 class WorkerThreadDebugger; | 55 class WorkerThreadDebugger; |
| 55 | 56 |
| 56 class WorkerInspectorController : public RefCountedWillBeGarbageCollectedFinaliz
ed<WorkerInspectorController>, public InspectorRuntimeAgent::Client { | 57 class WorkerInspectorController : public RefCountedWillBeGarbageCollectedFinaliz
ed<WorkerInspectorController>, public InspectorRuntimeAgent::Client { |
| 57 WTF_MAKE_NONCOPYABLE(WorkerInspectorController); | 58 WTF_MAKE_NONCOPYABLE(WorkerInspectorController); |
| 58 WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED(WorkerInspectorController); | 59 WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED(WorkerInspectorController); |
| 59 public: | 60 public: |
| (...skipping 24 matching lines...) Expand all Loading... |
| 84 RefPtrWillBeMember<InstrumentingAgents> m_instrumentingAgents; | 85 RefPtrWillBeMember<InstrumentingAgents> m_instrumentingAgents; |
| 85 OwnPtrWillBeMember<InjectedScriptManager> m_injectedScriptManager; | 86 OwnPtrWillBeMember<InjectedScriptManager> m_injectedScriptManager; |
| 86 OwnPtrWillBeMember<WorkerThreadDebugger> m_workerThreadDebugger; | 87 OwnPtrWillBeMember<WorkerThreadDebugger> m_workerThreadDebugger; |
| 87 InspectorAgentRegistry m_agents; | 88 InspectorAgentRegistry m_agents; |
| 88 OwnPtr<InspectorFrontendChannel> m_frontendChannel; | 89 OwnPtr<InspectorFrontendChannel> m_frontendChannel; |
| 89 OwnPtr<InspectorFrontend> m_frontend; | 90 OwnPtr<InspectorFrontend> m_frontend; |
| 90 RefPtrWillBeMember<InspectorBackendDispatcher> m_backendDispatcher; | 91 RefPtrWillBeMember<InspectorBackendDispatcher> m_backendDispatcher; |
| 91 RawPtrWillBeMember<WorkerDebuggerAgent> m_workerDebuggerAgent; | 92 RawPtrWillBeMember<WorkerDebuggerAgent> m_workerDebuggerAgent; |
| 92 OwnPtrWillBeMember<AsyncCallTracker> m_asyncCallTracker; | 93 OwnPtrWillBeMember<AsyncCallTracker> m_asyncCallTracker; |
| 93 RawPtrWillBeMember<WorkerRuntimeAgent> m_workerRuntimeAgent; | 94 RawPtrWillBeMember<WorkerRuntimeAgent> m_workerRuntimeAgent; |
| 95 OwnPtr<InspectorTaskRunner> m_inspectorTaskRunner; |
| 94 bool m_paused; | 96 bool m_paused; |
| 95 }; | 97 }; |
| 96 | 98 |
| 97 } | 99 } |
| 98 | 100 |
| 99 #endif // WorkerInspectorController_h | 101 #endif // WorkerInspectorController_h |
| OLD | NEW |