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

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

Issue 888893002: Oilpan: fix build after r189261. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 10 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
« no previous file with comments | « no previous file | no next file » | 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 146 matching lines...) Expand 10 before | Expand all | Expand 10 after
157 RawPtrWillBeMember<InspectorPageAgent> m_pageAgent; 157 RawPtrWillBeMember<InspectorPageAgent> m_pageAgent;
158 InspectorFrontend::Network* m_frontend; 158 InspectorFrontend::Network* m_frontend;
159 String m_userAgentOverride; 159 String m_userAgentOverride;
160 String m_hostId; 160 String m_hostId;
161 OwnPtr<NetworkResourcesData> m_resourcesData; 161 OwnPtr<NetworkResourcesData> m_resourcesData;
162 162
163 typedef WillBeHeapHashMap<ThreadableLoaderClient*, RefPtrWillBeMember<XHRRep layData> > PendingXHRReplayDataMap; 163 typedef WillBeHeapHashMap<ThreadableLoaderClient*, RefPtrWillBeMember<XHRRep layData> > PendingXHRReplayDataMap;
164 PendingXHRReplayDataMap m_pendingXHRReplayData; 164 PendingXHRReplayDataMap m_pendingXHRReplayData;
165 165
166 ThreadableLoaderClient* m_pendingEventSource; 166 ThreadableLoaderClient* m_pendingEventSource;
167 typedef WillBeHeapHashMap<ThreadableLoaderClient*, unsigned long> EventSourc eRequestIdMap; 167 typedef HashMap<ThreadableLoaderClient*, unsigned long> EventSourceRequestId Map;
168 EventSourceRequestIdMap m_eventSourceRequestIdMap; 168 EventSourceRequestIdMap m_eventSourceRequestIdMap;
169 169
170 typedef HashMap<String, RefPtr<TypeBuilder::Network::Initiator> > FrameNavig ationInitiatorMap; 170 typedef HashMap<String, RefPtr<TypeBuilder::Network::Initiator> > FrameNavig ationInitiatorMap;
171 FrameNavigationInitiatorMap m_frameNavigationInitiatorMap; 171 FrameNavigationInitiatorMap m_frameNavigationInitiatorMap;
172 172
173 // FIXME: InspectorResourceAgent should now be aware of style recalculation. 173 // FIXME: InspectorResourceAgent should now be aware of style recalculation.
174 RefPtr<TypeBuilder::Network::Initiator> m_styleRecalculationInitiator; 174 RefPtr<TypeBuilder::Network::Initiator> m_styleRecalculationInitiator;
175 bool m_isRecalculatingStyle; 175 bool m_isRecalculatingStyle;
176 176
177 WillBeHeapHashSet<RefPtrWillBeMember<XMLHttpRequest> > m_replayXHRs; 177 WillBeHeapHashSet<RefPtrWillBeMember<XMLHttpRequest> > m_replayXHRs;
178 WillBeHeapHashSet<RefPtrWillBeMember<XMLHttpRequest> > m_replayXHRsToBeDelet ed; 178 WillBeHeapHashSet<RefPtrWillBeMember<XMLHttpRequest> > m_replayXHRsToBeDelet ed;
179 Timer<InspectorResourceAgent> m_removeFinishedReplayXHRTimer; 179 Timer<InspectorResourceAgent> m_removeFinishedReplayXHRTimer;
180 }; 180 };
181 181
182 } // namespace blink 182 } // namespace blink
183 183
184 184
185 #endif // !defined(InspectorResourceAgent_h) 185 #endif // !defined(InspectorResourceAgent_h)
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698