OLD | NEW |
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 Loading... |
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) |
OLD | NEW |