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

Side by Side Diff: third_party/WebKit/Source/core/loader/BeaconLoader.h

Issue 2105713002: Render process changes for ResourceTiming sizes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@resource_timing_sizes_browser_process
Patch Set: Initialise encoded_body_length for sync XHR to data: URLs Created 4 years, 5 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 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef BeaconLoader_h 5 #ifndef BeaconLoader_h
6 #define BeaconLoader_h 6 #define BeaconLoader_h
7 7
8 #include "core/CoreExport.h" 8 #include "core/CoreExport.h"
9 #include "core/loader/PingLoader.h" 9 #include "core/loader/PingLoader.h"
10 #include "platform/heap/Handle.h" 10 #include "platform/heap/Handle.h"
(...skipping 23 matching lines...) Expand all
34 static bool sendBeacon(LocalFrame*, int, const KURL&, FormData*, int&); 34 static bool sendBeacon(LocalFrame*, int, const KURL&, FormData*, int&);
35 35
36 private: 36 private:
37 class Sender; 37 class Sender;
38 38
39 BeaconLoader(LocalFrame*, ResourceRequest&, const FetchInitiatorInfo&, Store dCredentials); 39 BeaconLoader(LocalFrame*, ResourceRequest&, const FetchInitiatorInfo&, Store dCredentials);
40 40
41 RefPtr<SecurityOrigin> m_beaconOrigin; 41 RefPtr<SecurityOrigin> m_beaconOrigin;
42 42
43 // WebURLLoaderClient 43 // WebURLLoaderClient
44 void willFollowRedirect(WebURLLoader*, WebURLRequest&, const WebURLResponse& ) override; 44 void willFollowRedirect(WebURLLoader*, WebURLRequest&, const WebURLResponse& , int64_t encodedDataLength) override;
45 }; 45 };
46 46
47 } // namespace blink 47 } // namespace blink
48 48
49 #endif // BeaconLoader_h 49 #endif // BeaconLoader_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/fetch/ResourceLoader.cpp ('k') | third_party/WebKit/Source/core/loader/BeaconLoader.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698