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

Side by Side Diff: third_party/WebKit/Source/web/WebDevToolsAgentImpl.h

Issue 1434383002: Oilpan: move InspectedFrames to the heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix incorrect OwnPtr<> use Created 5 years, 1 month 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) 2010 Google Inc. All rights reserved. 2 * Copyright (C) 2010 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 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
136 bool m_attached; 136 bool m_attached;
137 #if ENABLE(ASSERT) 137 #if ENABLE(ASSERT)
138 bool m_hasBeenDisposed; 138 bool m_hasBeenDisposed;
139 #endif 139 #endif
140 140
141 RefPtrWillBeMember<InstrumentingAgents> m_instrumentingAgents; 141 RefPtrWillBeMember<InstrumentingAgents> m_instrumentingAgents;
142 OwnPtrWillBeMember<InjectedScriptManager> m_injectedScriptManager; 142 OwnPtrWillBeMember<InjectedScriptManager> m_injectedScriptManager;
143 OwnPtrWillBeMember<InspectorResourceContentLoader> m_resourceContentLoader; 143 OwnPtrWillBeMember<InspectorResourceContentLoader> m_resourceContentLoader;
144 OwnPtrWillBeMember<InspectorCompositeState> m_state; 144 OwnPtrWillBeMember<InspectorCompositeState> m_state;
145 OwnPtrWillBeMember<InspectorOverlay> m_overlay; 145 OwnPtrWillBeMember<InspectorOverlay> m_overlay;
146 OwnPtr<InspectedFrames> m_inspectedFrames; 146 OwnPtrWillBeMember<InspectedFrames> m_inspectedFrames;
147 147
148 RawPtrWillBeMember<InspectorInspectorAgent> m_inspectorAgent; 148 RawPtrWillBeMember<InspectorInspectorAgent> m_inspectorAgent;
149 RawPtrWillBeMember<InspectorDOMAgent> m_domAgent; 149 RawPtrWillBeMember<InspectorDOMAgent> m_domAgent;
150 RawPtrWillBeMember<InspectorPageAgent> m_pageAgent; 150 RawPtrWillBeMember<InspectorPageAgent> m_pageAgent;
151 RawPtrWillBeMember<InspectorResourceAgent> m_resourceAgent; 151 RawPtrWillBeMember<InspectorResourceAgent> m_resourceAgent;
152 RawPtrWillBeMember<InspectorLayerTreeAgent> m_layerTreeAgent; 152 RawPtrWillBeMember<InspectorLayerTreeAgent> m_layerTreeAgent;
153 RawPtrWillBeMember<InspectorTracingAgent> m_tracingAgent; 153 RawPtrWillBeMember<InspectorTracingAgent> m_tracingAgent;
154 RawPtrWillBeMember<PageRuntimeAgent> m_pageRuntimeAgent; 154 RawPtrWillBeMember<PageRuntimeAgent> m_pageRuntimeAgent;
155 RawPtrWillBeMember<PageConsoleAgent> m_pageConsoleAgent; 155 RawPtrWillBeMember<PageConsoleAgent> m_pageConsoleAgent;
156 156
157 RefPtrWillBeMember<InspectorBackendDispatcher> m_inspectorBackendDispatcher; 157 RefPtrWillBeMember<InspectorBackendDispatcher> m_inspectorBackendDispatcher;
158 OwnPtr<InspectorFrontend> m_inspectorFrontend; 158 OwnPtr<InspectorFrontend> m_inspectorFrontend;
159 InspectorAgentRegistry m_agents; 159 InspectorAgentRegistry m_agents;
160 bool m_deferredAgentsInitialized; 160 bool m_deferredAgentsInitialized;
161 161
162 typedef Vector<RefPtr<JSONObject>> NotificationQueue; 162 typedef Vector<RefPtr<JSONObject>> NotificationQueue;
163 NotificationQueue m_notificationQueue; 163 NotificationQueue m_notificationQueue;
164 String m_stateCookie; 164 String m_stateCookie;
165 165
166 friend class DebuggerTask; 166 friend class DebuggerTask;
167 }; 167 };
168 168
169 } // namespace blink 169 } // namespace blink
170 170
171 #endif 171 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698