Chromium Code Reviews| 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 30 matching lines...) Expand all Loading... | |
| 41 namespace WebCore { | 41 namespace WebCore { |
| 42 | 42 |
| 43 class DOMWrapperWorld; | 43 class DOMWrapperWorld; |
| 44 class LocalFrame; | 44 class LocalFrame; |
| 45 class GraphicsContext; | 45 class GraphicsContext; |
| 46 class GraphicsLayer; | 46 class GraphicsLayer; |
| 47 class InjectedScriptManager; | 47 class InjectedScriptManager; |
| 48 class InspectorBackendDispatcher; | 48 class InspectorBackendDispatcher; |
| 49 class InspectorAgent; | 49 class InspectorAgent; |
| 50 class InspectorClient; | 50 class InspectorClient; |
| 51 class InspectorCSSAgent; | |
| 51 class InspectorDOMAgent; | 52 class InspectorDOMAgent; |
| 52 class InspectorFrontend; | 53 class InspectorFrontend; |
| 53 class InspectorFrontendChannel; | 54 class InspectorFrontendChannel; |
| 54 class InspectorFrontendClient; | 55 class InspectorFrontendClient; |
| 55 class InspectorLayerTreeAgent; | 56 class InspectorLayerTreeAgent; |
| 56 class InspectorPageAgent; | 57 class InspectorPageAgent; |
| 57 class InspectorTimelineAgent; | 58 class InspectorTimelineAgent; |
| 58 class InspectorOverlay; | 59 class InspectorOverlay; |
| 59 class InspectorState; | 60 class InspectorState; |
| 60 class InstrumentingAgents; | 61 class InstrumentingAgents; |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 140 void initializeDeferredAgents(); | 141 void initializeDeferredAgents(); |
| 141 | 142 |
| 142 friend InstrumentingAgents* instrumentationForPage(Page*); | 143 friend InstrumentingAgents* instrumentationForPage(Page*); |
| 143 | 144 |
| 144 RefPtr<InstrumentingAgents> m_instrumentingAgents; | 145 RefPtr<InstrumentingAgents> m_instrumentingAgents; |
| 145 OwnPtr<InjectedScriptManager> m_injectedScriptManager; | 146 OwnPtr<InjectedScriptManager> m_injectedScriptManager; |
| 146 OwnPtr<InspectorCompositeState> m_state; | 147 OwnPtr<InspectorCompositeState> m_state; |
| 147 OwnPtr<InspectorOverlay> m_overlay; | 148 OwnPtr<InspectorOverlay> m_overlay; |
| 148 | 149 |
| 149 InspectorDOMAgent* m_domAgent; | 150 InspectorDOMAgent* m_domAgent; |
| 151 InspectorCSSAgent* m_cssAgent; | |
|
lushnikov
2014/03/17 09:37:20
do we need these chagnes?
pfeldman
2014/03/17 13:47:41
Done.
| |
| 150 InspectorPageAgent* m_pageAgent; | 152 InspectorPageAgent* m_pageAgent; |
| 151 InspectorTimelineAgent* m_timelineAgent; | 153 InspectorTimelineAgent* m_timelineAgent; |
| 152 InspectorLayerTreeAgent* m_layerTreeAgent; | 154 InspectorLayerTreeAgent* m_layerTreeAgent; |
| 153 | 155 |
| 154 RefPtr<InspectorBackendDispatcher> m_inspectorBackendDispatcher; | 156 RefPtr<InspectorBackendDispatcher> m_inspectorBackendDispatcher; |
| 155 OwnPtr<InspectorFrontendClient> m_inspectorFrontendClient; | 157 OwnPtr<InspectorFrontendClient> m_inspectorFrontendClient; |
| 156 OwnPtr<InspectorFrontend> m_inspectorFrontend; | 158 OwnPtr<InspectorFrontend> m_inspectorFrontend; |
| 157 Page* m_page; | 159 Page* m_page; |
| 158 InspectorClient* m_inspectorClient; | 160 InspectorClient* m_inspectorClient; |
| 159 InspectorAgentRegistry m_agents; | 161 InspectorAgentRegistry m_agents; |
| 160 Vector<InspectorAgent*> m_moduleAgents; | 162 Vector<InspectorAgent*> m_moduleAgents; |
| 161 bool m_isUnderTest; | 163 bool m_isUnderTest; |
| 162 bool m_deferredAgentsInitialized; | 164 bool m_deferredAgentsInitialized; |
| 163 }; | 165 }; |
| 164 | 166 |
| 165 } | 167 } |
| 166 | 168 |
| 167 | 169 |
| 168 #endif // !defined(InspectorController_h) | 170 #endif // !defined(InspectorController_h) |
| OLD | NEW |