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

Unified Diff: webkit/api/public/WebURLLoaderClient.h

Issue 295041: DevTools: report correct content length for resources (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/test/data/devtools/image.png ('k') | webkit/api/src/ResourceHandle.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/api/public/WebURLLoaderClient.h
===================================================================
--- webkit/api/public/WebURLLoaderClient.h (revision 30714)
+++ webkit/api/public/WebURLLoaderClient.h (working copy)
@@ -53,7 +53,7 @@
virtual void didReceiveResponse(WebURLLoader*, const WebURLResponse&) = 0;
// Called when a chunk of response data is received.
- virtual void didReceiveData(WebURLLoader*, const char* data, int dataLength, long long totalDataLength) = 0;
+ virtual void didReceiveData(WebURLLoader*, const char* data, int dataLength) = 0;
// Called when the load completes successfully.
virtual void didFinishLoading(WebURLLoader*) = 0;
« no previous file with comments | « chrome/test/data/devtools/image.png ('k') | webkit/api/src/ResourceHandle.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698