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

Unified Diff: webkit/support/weburl_loader_mock.cc

Issue 3573006: Replace last remaining usage of WebURLLoaderClient::didFinishLoading(WebURLLoader*) (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: Replace last remaining usage of WebURLLoaderClient::didFinishLoading(WebURLLo... Created 10 years, 3 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/support/weburl_loader_mock.cc
===================================================================
--- webkit/support/weburl_loader_mock.cc (revision 61188)
+++ webkit/support/weburl_loader_mock.cc (working copy)
@@ -30,7 +30,7 @@
client_->didReceiveResponse(this, response);
client_->didReceiveData(this, data.data(), data.size());
- client_->didFinishLoading(this);
+ client_->didFinishLoading(this, 0);
}
void WebURLLoaderMock::loadSynchronously(const WebKit::WebURLRequest& request,
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698