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

Side by Side Diff: third_party/WebKit/Source/core/inspector/InspectorNetworkAgent.h

Issue 2463703003: blink: Cleanup core class forward declarations (Closed)
Patch Set: Remove redundant empty lines Created 4 years, 1 month 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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 class Resource; 55 class Resource;
56 class ResourceError; 56 class ResourceError;
57 class ResourceResponse; 57 class ResourceResponse;
58 class ThreadableLoaderClient; 58 class ThreadableLoaderClient;
59 class XHRReplayData; 59 class XHRReplayData;
60 class XMLHttpRequest; 60 class XMLHttpRequest;
61 61
62 class WebSocketHandshakeRequest; 62 class WebSocketHandshakeRequest;
63 class WebSocketHandshakeResponse; 63 class WebSocketHandshakeResponse;
64 64
65 namespace protocol {
66 class DictionaryValue;
67 }
68
69 class CORE_EXPORT InspectorNetworkAgent final 65 class CORE_EXPORT InspectorNetworkAgent final
70 : public InspectorBaseAgent<protocol::Network::Metainfo> { 66 : public InspectorBaseAgent<protocol::Network::Metainfo> {
71 public: 67 public:
72 static InspectorNetworkAgent* create(InspectedFrames* inspectedFrames) { 68 static InspectorNetworkAgent* create(InspectedFrames* inspectedFrames) {
73 return new InspectorNetworkAgent(inspectedFrames); 69 return new InspectorNetworkAgent(inspectedFrames);
74 } 70 }
75 71
76 void restore() override; 72 void restore() override;
77 73
78 ~InspectorNetworkAgent() override; 74 ~InspectorNetworkAgent() override;
(...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after
285 bool m_isRecalculatingStyle; 281 bool m_isRecalculatingStyle;
286 282
287 HeapHashSet<Member<XMLHttpRequest>> m_replayXHRs; 283 HeapHashSet<Member<XMLHttpRequest>> m_replayXHRs;
288 HeapHashSet<Member<XMLHttpRequest>> m_replayXHRsToBeDeleted; 284 HeapHashSet<Member<XMLHttpRequest>> m_replayXHRsToBeDeleted;
289 Timer<InspectorNetworkAgent> m_removeFinishedReplayXHRTimer; 285 Timer<InspectorNetworkAgent> m_removeFinishedReplayXHRTimer;
290 }; 286 };
291 287
292 } // namespace blink 288 } // namespace blink
293 289
294 #endif // !defined(InspectorNetworkAgent_h) 290 #endif // !defined(InspectorNetworkAgent_h)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698