Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(12)

Side by Side Diff: Source/core/inspector/InspectorController.h

Issue 783923005: Oilpan: move InspectorOverlay to the heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
139 private: 139 private:
140 InspectorController(Page*, InspectorClient*); 140 InspectorController(Page*, InspectorClient*);
141 141
142 void initializeDeferredAgents(); 142 void initializeDeferredAgents();
143 143
144 friend InstrumentingAgents* instrumentationForPage(Page*); 144 friend InstrumentingAgents* instrumentationForPage(Page*);
145 145
146 RefPtrWillBeMember<InstrumentingAgents> m_instrumentingAgents; 146 RefPtrWillBeMember<InstrumentingAgents> m_instrumentingAgents;
147 OwnPtrWillBeMember<InjectedScriptManager> m_injectedScriptManager; 147 OwnPtrWillBeMember<InjectedScriptManager> m_injectedScriptManager;
148 OwnPtrWillBeMember<InspectorCompositeState> m_state; 148 OwnPtrWillBeMember<InspectorCompositeState> m_state;
149 OwnPtr<InspectorOverlay> m_overlay; 149 OwnPtrWillBeMember<InspectorOverlay> m_overlay;
150 150
151 RawPtrWillBeMember<InspectorDOMAgent> m_domAgent; 151 RawPtrWillBeMember<InspectorDOMAgent> m_domAgent;
152 RawPtrWillBeMember<InspectorPageAgent> m_pageAgent; 152 RawPtrWillBeMember<InspectorPageAgent> m_pageAgent;
153 RawPtrWillBeMember<InspectorTimelineAgent> m_timelineAgent; 153 RawPtrWillBeMember<InspectorTimelineAgent> m_timelineAgent;
154 RawPtrWillBeMember<InspectorCSSAgent> m_cssAgent; 154 RawPtrWillBeMember<InspectorCSSAgent> m_cssAgent;
155 RawPtrWillBeMember<InspectorResourceAgent> m_resourceAgent; 155 RawPtrWillBeMember<InspectorResourceAgent> m_resourceAgent;
156 RawPtrWillBeMember<InspectorLayerTreeAgent> m_layerTreeAgent; 156 RawPtrWillBeMember<InspectorLayerTreeAgent> m_layerTreeAgent;
157 RawPtrWillBeMember<InspectorTracingAgent> m_tracingAgent; 157 RawPtrWillBeMember<InspectorTracingAgent> m_tracingAgent;
158 RawPtrWillBeMember<InspectorAnimationAgent> m_animationAgent; 158 RawPtrWillBeMember<InspectorAnimationAgent> m_animationAgent;
159 159
160 RefPtrWillBeMember<InspectorBackendDispatcher> m_inspectorBackendDispatcher; 160 RefPtrWillBeMember<InspectorBackendDispatcher> m_inspectorBackendDispatcher;
161 InspectorFrontendClient* m_inspectorFrontendClient; 161 InspectorFrontendClient* m_inspectorFrontendClient;
162 OwnPtr<InspectorFrontend> m_inspectorFrontend; 162 OwnPtr<InspectorFrontend> m_inspectorFrontend;
163 RawPtrWillBeMember<Page> m_page; 163 RawPtrWillBeMember<Page> m_page;
164 InspectorClient* m_inspectorClient; 164 InspectorClient* m_inspectorClient;
165 InspectorAgentRegistry m_agents; 165 InspectorAgentRegistry m_agents;
166 bool m_isUnderTest; 166 bool m_isUnderTest;
167 bool m_deferredAgentsInitialized; 167 bool m_deferredAgentsInitialized;
168 String m_hostId; 168 String m_hostId;
169 }; 169 };
170 170
171 } 171 }
172 172
173 173
174 #endif // !defined(InspectorController_h) 174 #endif // !defined(InspectorController_h)
OLDNEW
« no previous file with comments | « no previous file | Source/core/inspector/InspectorController.cpp » ('j') | Source/core/inspector/InspectorOverlay.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698