| 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 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 134 | 134 |
| 135 private: | 135 private: |
| 136 InspectorController(Page*, InspectorClient*); | 136 InspectorController(Page*, InspectorClient*); |
| 137 | 137 |
| 138 void initializeDeferredAgents(); | 138 void initializeDeferredAgents(); |
| 139 InspectorAgentRegistry& agents() { return m_agents; } | 139 InspectorAgentRegistry& agents() { return m_agents; } |
| 140 | 140 |
| 141 friend InstrumentingAgents* instrumentationForPage(Page*); | 141 friend InstrumentingAgents* instrumentationForPage(Page*); |
| 142 | 142 |
| 143 RefPtrWillBeMember<InstrumentingAgents> m_instrumentingAgents; | 143 RefPtrWillBeMember<InstrumentingAgents> m_instrumentingAgents; |
| 144 OwnPtr<InjectedScriptManager> m_injectedScriptManager; | 144 OwnPtrWillBeMember<InjectedScriptManager> m_injectedScriptManager; |
| 145 OwnPtr<InspectorCompositeState> m_state; | 145 OwnPtrWillBeMember<InspectorCompositeState> m_state; |
| 146 OwnPtr<InspectorOverlay> m_overlay; | 146 OwnPtr<InspectorOverlay> m_overlay; |
| 147 | 147 |
| 148 RawPtrWillBeMember<InspectorDOMAgent> m_domAgent; | 148 RawPtrWillBeMember<InspectorDOMAgent> m_domAgent; |
| 149 RawPtrWillBeMember<InspectorPageAgent> m_pageAgent; | 149 RawPtrWillBeMember<InspectorPageAgent> m_pageAgent; |
| 150 RawPtrWillBeMember<InspectorTimelineAgent> m_timelineAgent; | 150 RawPtrWillBeMember<InspectorTimelineAgent> m_timelineAgent; |
| 151 RawPtrWillBeMember<InspectorLayerTreeAgent> m_layerTreeAgent; | 151 RawPtrWillBeMember<InspectorLayerTreeAgent> m_layerTreeAgent; |
| 152 RawPtrWillBeMember<InspectorTracingAgent> m_tracingAgent; | 152 RawPtrWillBeMember<InspectorTracingAgent> m_tracingAgent; |
| 153 | 153 |
| 154 RefPtr<InspectorBackendDispatcher> m_inspectorBackendDispatcher; | 154 RefPtr<InspectorBackendDispatcher> m_inspectorBackendDispatcher; |
| 155 OwnPtr<InspectorFrontendClient> m_inspectorFrontendClient; | 155 OwnPtr<InspectorFrontendClient> m_inspectorFrontendClient; |
| 156 OwnPtr<InspectorFrontend> m_inspectorFrontend; | 156 OwnPtr<InspectorFrontend> m_inspectorFrontend; |
| 157 RawPtrWillBeMember<Page> m_page; | 157 RawPtrWillBeMember<Page> m_page; |
| 158 InspectorClient* m_inspectorClient; | 158 InspectorClient* m_inspectorClient; |
| 159 InspectorAgentRegistry m_agents; | 159 InspectorAgentRegistry m_agents; |
| 160 WillBeHeapVector<RawPtrWillBeMember<InspectorAgent> > m_moduleAgents; | 160 WillBeHeapVector<RawPtrWillBeMember<InspectorAgent> > m_moduleAgents; |
| 161 bool m_isUnderTest; | 161 bool m_isUnderTest; |
| 162 bool m_deferredAgentsInitialized; | 162 bool m_deferredAgentsInitialized; |
| 163 }; | 163 }; |
| 164 | 164 |
| 165 } | 165 } |
| 166 | 166 |
| 167 | 167 |
| 168 #endif // !defined(InspectorController_h) | 168 #endif // !defined(InspectorController_h) |
| OLD | NEW |