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

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

Issue 415013003: Oilpan: Prepare moving XHRReplayData to Oilpan (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 4 months 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | Source/core/inspector/InspectorResourceAgent.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 143 matching lines...) Expand 10 before | Expand all | Expand 10 after
154 void enable(); 154 void enable();
155 void delayedRemoveReplayXHR(XMLHttpRequest*); 155 void delayedRemoveReplayXHR(XMLHttpRequest*);
156 void removeFinishedReplayXHRFired(Timer<InspectorResourceAgent>*); 156 void removeFinishedReplayXHRFired(Timer<InspectorResourceAgent>*);
157 157
158 RawPtrWillBeMember<InspectorPageAgent> m_pageAgent; 158 RawPtrWillBeMember<InspectorPageAgent> m_pageAgent;
159 InspectorFrontend::Network* m_frontend; 159 InspectorFrontend::Network* m_frontend;
160 String m_userAgentOverride; 160 String m_userAgentOverride;
161 String m_hostId; 161 String m_hostId;
162 OwnPtr<NetworkResourcesData> m_resourcesData; 162 OwnPtr<NetworkResourcesData> m_resourcesData;
163 163
164 typedef HashMap<ThreadableLoaderClient*, RefPtr<XHRReplayData> > PendingXHRR eplayDataMap; 164 typedef WillBeHeapHashMap<ThreadableLoaderClient*, RefPtrWillBeMember<XHRRep layData> > PendingXHRReplayDataMap;
165 PendingXHRReplayDataMap m_pendingXHRReplayData; 165 PendingXHRReplayDataMap m_pendingXHRReplayData;
166 166
167 typedef HashMap<String, RefPtr<TypeBuilder::Network::Initiator> > FrameNavig ationInitiatorMap; 167 typedef HashMap<String, RefPtr<TypeBuilder::Network::Initiator> > FrameNavig ationInitiatorMap;
168 FrameNavigationInitiatorMap m_frameNavigationInitiatorMap; 168 FrameNavigationInitiatorMap m_frameNavigationInitiatorMap;
169 169
170 // FIXME: InspectorResourceAgent should now be aware of style recalculation. 170 // FIXME: InspectorResourceAgent should now be aware of style recalculation.
171 RefPtr<TypeBuilder::Network::Initiator> m_styleRecalculationInitiator; 171 RefPtr<TypeBuilder::Network::Initiator> m_styleRecalculationInitiator;
172 bool m_isRecalculatingStyle; 172 bool m_isRecalculatingStyle;
173 173
174 WillBeHeapHashSet<RefPtrWillBeMember<XMLHttpRequest> > m_replayXHRs; 174 WillBeHeapHashSet<RefPtrWillBeMember<XMLHttpRequest> > m_replayXHRs;
175 WillBeHeapHashSet<RefPtrWillBeMember<XMLHttpRequest> > m_replayXHRsToBeDelet ed; 175 WillBeHeapHashSet<RefPtrWillBeMember<XMLHttpRequest> > m_replayXHRsToBeDelet ed;
176 Timer<InspectorResourceAgent> m_removeFinishedReplayXHRTimer; 176 Timer<InspectorResourceAgent> m_removeFinishedReplayXHRTimer;
177 }; 177 };
178 178
179 } // namespace blink 179 } // namespace blink
180 180
181 181
182 #endif // !defined(InspectorResourceAgent_h) 182 #endif // !defined(InspectorResourceAgent_h)
OLDNEW
« no previous file with comments | « no previous file | Source/core/inspector/InspectorResourceAgent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698