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 56 matching lines...) Loading... |
67 void dispose(); | 67 void dispose(); |
68 WorkerDebuggerAgent* workerDebuggerAgent() { return m_workerDebuggerAgent.ge
t(); } | 68 WorkerDebuggerAgent* workerDebuggerAgent() { return m_workerDebuggerAgent.ge
t(); } |
69 | 69 |
70 private: | 70 private: |
71 friend InstrumentingAgents* instrumentationForWorkerGlobalScope(WorkerGlobal
Scope*); | 71 friend InstrumentingAgents* instrumentationForWorkerGlobalScope(WorkerGlobal
Scope*); |
72 | 72 |
73 InspectorAgentRegistry& agents() { return m_agents; } | 73 InspectorAgentRegistry& agents() { return m_agents; } |
74 | 74 |
75 RawPtrWillBeMember<WorkerGlobalScope> m_workerGlobalScope; | 75 RawPtrWillBeMember<WorkerGlobalScope> m_workerGlobalScope; |
76 OwnPtr<InspectorStateClient> m_stateClient; | 76 OwnPtr<InspectorStateClient> m_stateClient; |
77 OwnPtr<InspectorCompositeState> m_state; | 77 OwnPtrWillBeMember<InspectorCompositeState> m_state; |
78 RefPtrWillBeMember<InstrumentingAgents> m_instrumentingAgents; | 78 RefPtrWillBeMember<InstrumentingAgents> m_instrumentingAgents; |
79 OwnPtr<InjectedScriptManager> m_injectedScriptManager; | 79 OwnPtrWillBeMember<InjectedScriptManager> m_injectedScriptManager; |
80 OwnPtr<WorkerScriptDebugServer> m_debugServer; | 80 OwnPtr<WorkerScriptDebugServer> m_debugServer; |
81 InspectorAgentRegistry m_agents; | 81 InspectorAgentRegistry m_agents; |
82 OwnPtr<InspectorFrontendChannel> m_frontendChannel; | 82 OwnPtr<InspectorFrontendChannel> m_frontendChannel; |
83 OwnPtr<InspectorFrontend> m_frontend; | 83 OwnPtr<InspectorFrontend> m_frontend; |
84 RefPtr<InspectorBackendDispatcher> m_backendDispatcher; | 84 RefPtr<InspectorBackendDispatcher> m_backendDispatcher; |
85 RawPtrWillBeMember<WorkerDebuggerAgent> m_workerDebuggerAgent; | 85 RawPtrWillBeMember<WorkerDebuggerAgent> m_workerDebuggerAgent; |
86 }; | 86 }; |
87 | 87 |
88 } | 88 } |
89 | 89 |
90 #endif // !defined(WorkerInspectorController_h) | 90 #endif // !defined(WorkerInspectorController_h) |
OLD | NEW |