| 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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 class Resource; | 46 class Resource; |
| 47 struct FetchInitiatorInfo; | 47 struct FetchInitiatorInfo; |
| 48 class Document; | 48 class Document; |
| 49 class DocumentLoader; | 49 class DocumentLoader; |
| 50 class EncodedFormData; | 50 class EncodedFormData; |
| 51 class ExecutionContext; | 51 class ExecutionContext; |
| 52 class LocalFrame; | 52 class LocalFrame; |
| 53 class HTTPHeaderMap; | 53 class HTTPHeaderMap; |
| 54 class InspectedFrames; | 54 class InspectedFrames; |
| 55 class InspectorFrontend; | 55 class InspectorFrontend; |
| 56 class JSONObject; | |
| 57 class KURL; | 56 class KURL; |
| 58 class NetworkResourcesData; | 57 class NetworkResourcesData; |
| 59 class ResourceError; | 58 class ResourceError; |
| 60 class ResourceLoader; | 59 class ResourceLoader; |
| 61 class ResourceResponse; | 60 class ResourceResponse; |
| 62 class ThreadableLoaderClient; | 61 class ThreadableLoaderClient; |
| 63 class XHRReplayData; | 62 class XHRReplayData; |
| 64 class XMLHttpRequest; | 63 class XMLHttpRequest; |
| 65 | 64 |
| 66 class WebSocketHandshakeRequest; | 65 class WebSocketHandshakeRequest; |
| 67 class WebSocketHandshakeResponse; | 66 class WebSocketHandshakeResponse; |
| 68 | 67 |
| 68 namespace protocol { |
| 69 class DictionaryValue; |
| 70 } |
| 71 |
| 69 typedef String ErrorString; | 72 typedef String ErrorString; |
| 70 | 73 |
| 71 class CORE_EXPORT InspectorResourceAgent final : public InspectorBaseAgent<Inspe
ctorResourceAgent, protocol::Frontend::Network>, public protocol::Dispatcher::Ne
tworkCommandHandler { | 74 class CORE_EXPORT InspectorResourceAgent final : public InspectorBaseAgent<Inspe
ctorResourceAgent, protocol::Frontend::Network>, public protocol::Dispatcher::Ne
tworkCommandHandler { |
| 72 public: | 75 public: |
| 73 static PassOwnPtrWillBeRawPtr<InspectorResourceAgent> create(InspectedFrames
* inspectedFrames) | 76 static PassOwnPtrWillBeRawPtr<InspectorResourceAgent> create(InspectedFrames
* inspectedFrames) |
| 74 { | 77 { |
| 75 return adoptPtrWillBeNoop(new InspectorResourceAgent(inspectedFrames)); | 78 return adoptPtrWillBeNoop(new InspectorResourceAgent(inspectedFrames)); |
| 76 } | 79 } |
| 77 | 80 |
| 78 void restore() override; | 81 void restore() override; |
| (...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 186 | 189 |
| 187 PersistentHeapHashSetWillBeHeapHashSet<Member<XMLHttpRequest>> m_replayXHRs; | 190 PersistentHeapHashSetWillBeHeapHashSet<Member<XMLHttpRequest>> m_replayXHRs; |
| 188 PersistentHeapHashSetWillBeHeapHashSet<Member<XMLHttpRequest>> m_replayXHRsT
oBeDeleted; | 191 PersistentHeapHashSetWillBeHeapHashSet<Member<XMLHttpRequest>> m_replayXHRsT
oBeDeleted; |
| 189 Timer<InspectorResourceAgent> m_removeFinishedReplayXHRTimer; | 192 Timer<InspectorResourceAgent> m_removeFinishedReplayXHRTimer; |
| 190 }; | 193 }; |
| 191 | 194 |
| 192 } // namespace blink | 195 } // namespace blink |
| 193 | 196 |
| 194 | 197 |
| 195 #endif // !defined(InspectorResourceAgent_h) | 198 #endif // !defined(InspectorResourceAgent_h) |
| OLD | NEW |