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

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

Issue 884753003: Fix template angle bracket syntax in inspector (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Some more fixes 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
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 138 matching lines...) Expand 10 before | Expand all | Expand 10 after
149 void enable(); 149 void enable();
150 void delayedRemoveReplayXHR(XMLHttpRequest*); 150 void delayedRemoveReplayXHR(XMLHttpRequest*);
151 void removeFinishedReplayXHRFired(Timer<InspectorResourceAgent>*); 151 void removeFinishedReplayXHRFired(Timer<InspectorResourceAgent>*);
152 152
153 RawPtrWillBeMember<InspectorPageAgent> m_pageAgent; 153 RawPtrWillBeMember<InspectorPageAgent> m_pageAgent;
154 InspectorFrontend::Network* m_frontend; 154 InspectorFrontend::Network* m_frontend;
155 String m_userAgentOverride; 155 String m_userAgentOverride;
156 String m_hostId; 156 String m_hostId;
157 OwnPtr<NetworkResourcesData> m_resourcesData; 157 OwnPtr<NetworkResourcesData> m_resourcesData;
158 158
159 typedef WillBeHeapHashMap<ThreadableLoaderClient*, RefPtrWillBeMember<XHRRep layData> > PendingXHRReplayDataMap; 159 typedef WillBeHeapHashMap<ThreadableLoaderClient*, RefPtrWillBeMember<XHRRep layData>> PendingXHRReplayDataMap;
160 PendingXHRReplayDataMap m_pendingXHRReplayData; 160 PendingXHRReplayDataMap m_pendingXHRReplayData;
161 161
162 typedef HashMap<String, RefPtr<TypeBuilder::Network::Initiator> > FrameNavig ationInitiatorMap; 162 typedef HashMap<String, RefPtr<TypeBuilder::Network::Initiator>> FrameNaviga tionInitiatorMap;
163 FrameNavigationInitiatorMap m_frameNavigationInitiatorMap; 163 FrameNavigationInitiatorMap m_frameNavigationInitiatorMap;
164 164
165 // FIXME: InspectorResourceAgent should now be aware of style recalculation. 165 // FIXME: InspectorResourceAgent should now be aware of style recalculation.
166 RefPtr<TypeBuilder::Network::Initiator> m_styleRecalculationInitiator; 166 RefPtr<TypeBuilder::Network::Initiator> m_styleRecalculationInitiator;
167 bool m_isRecalculatingStyle; 167 bool m_isRecalculatingStyle;
168 168
169 WillBeHeapHashSet<RefPtrWillBeMember<XMLHttpRequest> > m_replayXHRs; 169 WillBeHeapHashSet<RefPtrWillBeMember<XMLHttpRequest>> m_replayXHRs;
170 WillBeHeapHashSet<RefPtrWillBeMember<XMLHttpRequest> > m_replayXHRsToBeDelet ed; 170 WillBeHeapHashSet<RefPtrWillBeMember<XMLHttpRequest>> m_replayXHRsToBeDelete d;
171 Timer<InspectorResourceAgent> m_removeFinishedReplayXHRTimer; 171 Timer<InspectorResourceAgent> m_removeFinishedReplayXHRTimer;
172 }; 172 };
173 173
174 } // namespace blink 174 } // namespace blink
175 175
176 176
177 #endif // !defined(InspectorResourceAgent_h) 177 #endif // !defined(InspectorResourceAgent_h)
OLDNEW
« no previous file with comments | « Source/core/inspector/InspectorPageAgent.cpp ('k') | Source/core/inspector/InspectorResourceContentLoader.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698