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 22 matching lines...) Expand all Loading... |
33 | 33 |
34 #include "core/inspector/InspectorBaseAgent.h" | 34 #include "core/inspector/InspectorBaseAgent.h" |
35 #include "wtf/FastAllocBase.h" | 35 #include "wtf/FastAllocBase.h" |
36 #include "wtf/Forward.h" | 36 #include "wtf/Forward.h" |
37 #include "wtf/Noncopyable.h" | 37 #include "wtf/Noncopyable.h" |
38 #include "wtf/OwnPtr.h" | 38 #include "wtf/OwnPtr.h" |
39 #include "wtf/RefPtr.h" | 39 #include "wtf/RefPtr.h" |
40 | 40 |
41 namespace blink { | 41 namespace blink { |
42 | 42 |
| 43 class EditedResourcesContentManager; |
43 class InjectedScriptManager; | 44 class InjectedScriptManager; |
44 class InspectorBackendDispatcher; | 45 class InspectorBackendDispatcher; |
45 class InspectorFrontend; | 46 class InspectorFrontend; |
46 class InspectorFrontendChannel; | 47 class InspectorFrontendChannel; |
47 class InspectorState; | 48 class InspectorState; |
48 class InspectorStateClient; | 49 class InspectorStateClient; |
49 class InstrumentingAgents; | 50 class InstrumentingAgents; |
50 class WorkerDebuggerAgent; | 51 class WorkerDebuggerAgent; |
51 class WorkerGlobalScope; | 52 class WorkerGlobalScope; |
52 class WorkerScriptDebugServer; | 53 class WorkerScriptDebugServer; |
(...skipping 15 matching lines...) Expand all Loading... |
68 void interruptAndDispatchInspectorCommands(); | 69 void interruptAndDispatchInspectorCommands(); |
69 | 70 |
70 private: | 71 private: |
71 friend InstrumentingAgents* instrumentationForWorkerGlobalScope(WorkerGlobal
Scope*); | 72 friend InstrumentingAgents* instrumentationForWorkerGlobalScope(WorkerGlobal
Scope*); |
72 | 73 |
73 RawPtrWillBeMember<WorkerGlobalScope> m_workerGlobalScope; | 74 RawPtrWillBeMember<WorkerGlobalScope> m_workerGlobalScope; |
74 OwnPtr<InspectorStateClient> m_stateClient; | 75 OwnPtr<InspectorStateClient> m_stateClient; |
75 OwnPtrWillBeMember<InspectorCompositeState> m_state; | 76 OwnPtrWillBeMember<InspectorCompositeState> m_state; |
76 RefPtrWillBeMember<InstrumentingAgents> m_instrumentingAgents; | 77 RefPtrWillBeMember<InstrumentingAgents> m_instrumentingAgents; |
77 OwnPtrWillBeMember<InjectedScriptManager> m_injectedScriptManager; | 78 OwnPtrWillBeMember<InjectedScriptManager> m_injectedScriptManager; |
| 79 OwnPtrWillBeMember<EditedResourcesContentManager> m_editedResourcesContentMa
nager; |
78 OwnPtr<WorkerScriptDebugServer> m_debugServer; | 80 OwnPtr<WorkerScriptDebugServer> m_debugServer; |
79 InspectorAgentRegistry m_agents; | 81 InspectorAgentRegistry m_agents; |
80 OwnPtr<InspectorFrontendChannel> m_frontendChannel; | 82 OwnPtr<InspectorFrontendChannel> m_frontendChannel; |
81 OwnPtr<InspectorFrontend> m_frontend; | 83 OwnPtr<InspectorFrontend> m_frontend; |
82 RefPtr<InspectorBackendDispatcher> m_backendDispatcher; | 84 RefPtr<InspectorBackendDispatcher> m_backendDispatcher; |
83 RawPtrWillBeMember<WorkerDebuggerAgent> m_workerDebuggerAgent; | 85 RawPtrWillBeMember<WorkerDebuggerAgent> m_workerDebuggerAgent; |
84 }; | 86 }; |
85 | 87 |
86 } | 88 } |
87 | 89 |
88 #endif // !defined(WorkerInspectorController_h) | 90 #endif // !defined(WorkerInspectorController_h) |
OLD | NEW |