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

Unified Diff: Source/core/fetch/ResourceLoader.h

Issue 23632004: Add encoded_data_length argument to didDownloadData delegate method (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 4 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 | « no previous file | Source/core/fetch/ResourceLoader.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/fetch/ResourceLoader.h
diff --git a/Source/core/fetch/ResourceLoader.h b/Source/core/fetch/ResourceLoader.h
index d298e950ba4f434b1c24c7116bbddad00ff28efa..884bc60196c4f7c7683fbdd900cf5f498714dc3b 100644
--- a/Source/core/fetch/ResourceLoader.h
+++ b/Source/core/fetch/ResourceLoader.h
@@ -73,7 +73,7 @@ public:
virtual void didReceiveCachedMetadata(WebKit::WebURLLoader*, const char* data, int length) OVERRIDE;
virtual void didFinishLoading(WebKit::WebURLLoader*, double finishTime) OVERRIDE;
virtual void didFail(WebKit::WebURLLoader*, const WebKit::WebURLError&) OVERRIDE;
- virtual void didDownloadData(WebKit::WebURLLoader*, int) OVERRIDE;
+ virtual void didDownloadData(WebKit::WebURLLoader*, int, int) OVERRIDE;
const KURL& url() const { return m_request.url(); }
bool shouldSendResourceLoadCallbacks() const { return m_options.sendLoadCallbacks == SendCallbacks; }
« no previous file with comments | « no previous file | Source/core/fetch/ResourceLoader.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698