| 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 21 matching lines...) Expand all Loading... |
| 32 #define InspectorResourceAgent_h | 32 #define InspectorResourceAgent_h |
| 33 | 33 |
| 34 #include "bindings/core/v8/ScriptString.h" | 34 #include "bindings/core/v8/ScriptString.h" |
| 35 #include "core/InspectorFrontend.h" | 35 #include "core/InspectorFrontend.h" |
| 36 #include "core/inspector/InspectorBaseAgent.h" | 36 #include "core/inspector/InspectorBaseAgent.h" |
| 37 #include "platform/Timer.h" | 37 #include "platform/Timer.h" |
| 38 #include "platform/heap/Handle.h" | 38 #include "platform/heap/Handle.h" |
| 39 #include "wtf/PassOwnPtr.h" | 39 #include "wtf/PassOwnPtr.h" |
| 40 #include "wtf/text/WTFString.h" | 40 #include "wtf/text/WTFString.h" |
| 41 | 41 |
| 42 namespace WTF { | |
| 43 class String; | |
| 44 } | |
| 45 | |
| 46 namespace blink { | 42 namespace blink { |
| 47 | 43 |
| 48 class Resource; | 44 class Resource; |
| 49 struct FetchInitiatorInfo; | 45 struct FetchInitiatorInfo; |
| 50 class Document; | 46 class Document; |
| 51 class DocumentLoader; | 47 class DocumentLoader; |
| 52 class FormData; | 48 class FormData; |
| 53 class LocalFrame; | 49 class LocalFrame; |
| 54 class HTTPHeaderMap; | 50 class HTTPHeaderMap; |
| 55 class InspectorFrontend; | 51 class InspectorFrontend; |
| 56 class InspectorPageAgent; | 52 class InspectorPageAgent; |
| 57 class InstrumentingAgents; | |
| 58 class JSONObject; | 53 class JSONObject; |
| 59 class KURL; | 54 class KURL; |
| 60 class NetworkResourcesData; | 55 class NetworkResourcesData; |
| 61 class Page; | |
| 62 class ResourceError; | 56 class ResourceError; |
| 63 class ResourceLoader; | 57 class ResourceLoader; |
| 64 class ResourceRequest; | 58 class ResourceRequest; |
| 65 class ResourceResponse; | 59 class ResourceResponse; |
| 66 class ThreadableLoaderClient; | 60 class ThreadableLoaderClient; |
| 67 class XHRReplayData; | 61 class XHRReplayData; |
| 68 class XMLHttpRequest; | 62 class XMLHttpRequest; |
| 69 | 63 |
| 70 class WebSocketHandshakeRequest; | 64 class WebSocketHandshakeRequest; |
| 71 class WebSocketHandshakeResponse; | 65 class WebSocketHandshakeResponse; |
| (...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 174 | 168 |
| 175 WillBeHeapHashSet<RefPtrWillBeMember<XMLHttpRequest> > m_replayXHRs; | 169 WillBeHeapHashSet<RefPtrWillBeMember<XMLHttpRequest> > m_replayXHRs; |
| 176 WillBeHeapHashSet<RefPtrWillBeMember<XMLHttpRequest> > m_replayXHRsToBeDelet
ed; | 170 WillBeHeapHashSet<RefPtrWillBeMember<XMLHttpRequest> > m_replayXHRsToBeDelet
ed; |
| 177 Timer<InspectorResourceAgent> m_removeFinishedReplayXHRTimer; | 171 Timer<InspectorResourceAgent> m_removeFinishedReplayXHRTimer; |
| 178 }; | 172 }; |
| 179 | 173 |
| 180 } // namespace blink | 174 } // namespace blink |
| 181 | 175 |
| 182 | 176 |
| 183 #endif // !defined(InspectorResourceAgent_h) | 177 #endif // !defined(InspectorResourceAgent_h) |
| OLD | NEW |