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

Unified Diff: content/test/mock_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 | « content/child/web_url_loader_impl_unittest.cc ('k') | media/blink/mock_weburlloader.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/test/mock_weburlloader.h
diff --git a/content/test/mock_weburlloader.h b/content/test/mock_weburlloader.h
index 3518b67b18ff24d4b3acccd5f825324a3b4be54d..b61eee641e5aad31cac53d23d1f063821ddf284b 100644
--- a/content/test/mock_weburlloader.h
+++ b/content/test/mock_weburlloader.h
@@ -16,10 +16,12 @@ class MockWebURLLoader : public blink::WebURLLoader {
MockWebURLLoader();
virtual ~MockWebURLLoader();
- MOCK_METHOD4(loadSynchronously, void(const blink::WebURLRequest& request,
- blink::WebURLResponse& response,
- blink::WebURLError& error,
- blink::WebData& data));
+ MOCK_METHOD5(loadSynchronously,
+ void(const blink::WebURLRequest& request,
+ blink::WebURLResponse& response,
+ blink::WebURLError& error,
+ blink::WebData& data,
+ int64_t& encodedDataLength));
MOCK_METHOD2(loadAsynchronously, void(const blink::WebURLRequest& request,
blink::WebURLLoaderClient* client));
MOCK_METHOD0(cancel, void());
« no previous file with comments | « content/child/web_url_loader_impl_unittest.cc ('k') | media/blink/mock_weburlloader.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698