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

Unified Diff: third_party/WebKit/public/platform/WebURLLoader.h

Issue 2163183002: Fix PerformanceResourceTiming transferSize field for sync XHR (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@resource_timing_sizes_worker_tests
Patch Set: Rebase 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/WebKit/Source/web/AssociatedURLLoader.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/public/platform/WebURLLoader.h
diff --git a/third_party/WebKit/public/platform/WebURLLoader.h b/third_party/WebKit/public/platform/WebURLLoader.h
index 4058624586a404e70a2cf53a39ca54cea0171bcb..c6c7095dc462c2978efe722780bd802a7e66d0d5 100644
--- a/third_party/WebKit/public/platform/WebURLLoader.h
+++ b/third_party/WebKit/public/platform/WebURLLoader.h
@@ -33,6 +33,7 @@
#include "WebCommon.h"
#include "WebURLRequest.h"
+#include <stdint.h>
namespace blink {
@@ -51,7 +52,8 @@ public:
// caller upon completion. There is no mechanism to interrupt a
// synchronous load!!
virtual void loadSynchronously(const WebURLRequest&,
- WebURLResponse&, WebURLError&, WebData& data) = 0;
+ WebURLResponse&, WebURLError&, WebData&,
+ int64_t& encodedDataLength) = 0;
// Load the request asynchronously, sending notifications to the given
// client. The client will receive no further notifications if the
« no previous file with comments | « third_party/WebKit/Source/web/AssociatedURLLoader.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698