| 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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 class XHRReplayData; | 62 class XHRReplayData; |
| 63 class XMLHttpRequest; | 63 class XMLHttpRequest; |
| 64 | 64 |
| 65 class WebSocketHandshakeRequest; | 65 class WebSocketHandshakeRequest; |
| 66 class WebSocketHandshakeResponse; | 66 class WebSocketHandshakeResponse; |
| 67 | 67 |
| 68 namespace protocol { | 68 namespace protocol { |
| 69 class DictionaryValue; | 69 class DictionaryValue; |
| 70 } | 70 } |
| 71 | 71 |
| 72 typedef String ErrorString; | |
| 73 | |
| 74 class CORE_EXPORT InspectorResourceAgent final : public InspectorBaseAgent<Inspe
ctorResourceAgent, protocol::Frontend::Network>, public protocol::Dispatcher::Ne
tworkCommandHandler { | 72 class CORE_EXPORT InspectorResourceAgent final : public InspectorBaseAgent<Inspe
ctorResourceAgent, protocol::Frontend::Network>, public protocol::Dispatcher::Ne
tworkCommandHandler { |
| 75 public: | 73 public: |
| 76 static PassOwnPtrWillBeRawPtr<InspectorResourceAgent> create(InspectedFrames
* inspectedFrames) | 74 static PassOwnPtrWillBeRawPtr<InspectorResourceAgent> create(InspectedFrames
* inspectedFrames) |
| 77 { | 75 { |
| 78 return adoptPtrWillBeNoop(new InspectorResourceAgent(inspectedFrames)); | 76 return adoptPtrWillBeNoop(new InspectorResourceAgent(inspectedFrames)); |
| 79 } | 77 } |
| 80 | 78 |
| 81 void restore() override; | 79 void restore() override; |
| 82 | 80 |
| 83 ~InspectorResourceAgent() override; | 81 ~InspectorResourceAgent() override; |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 190 | 188 |
| 191 PersistentHeapHashSetWillBeHeapHashSet<Member<XMLHttpRequest>> m_replayXHRs; | 189 PersistentHeapHashSetWillBeHeapHashSet<Member<XMLHttpRequest>> m_replayXHRs; |
| 192 PersistentHeapHashSetWillBeHeapHashSet<Member<XMLHttpRequest>> m_replayXHRsT
oBeDeleted; | 190 PersistentHeapHashSetWillBeHeapHashSet<Member<XMLHttpRequest>> m_replayXHRsT
oBeDeleted; |
| 193 Timer<InspectorResourceAgent> m_removeFinishedReplayXHRTimer; | 191 Timer<InspectorResourceAgent> m_removeFinishedReplayXHRTimer; |
| 194 }; | 192 }; |
| 195 | 193 |
| 196 } // namespace blink | 194 } // namespace blink |
| 197 | 195 |
| 198 | 196 |
| 199 #endif // !defined(InspectorResourceAgent_h) | 197 #endif // !defined(InspectorResourceAgent_h) |
| OLD | NEW |