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

Unified Diff: public/platform/WebURLLoaderClient.h

Issue 156623005: Add transfer size paramater to didFinishLoading [3/3] (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 10 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
Index: public/platform/WebURLLoaderClient.h
diff --git a/public/platform/WebURLLoaderClient.h b/public/platform/WebURLLoaderClient.h
index 23c5f16177d9f01039a814630e4f2008d057102d..e3171b372c0bcb70edcf4cd56eabba92a1acde34 100644
--- a/public/platform/WebURLLoaderClient.h
+++ b/public/platform/WebURLLoaderClient.h
@@ -63,16 +63,9 @@ public:
// Called when a chunk of renderer-generated metadata is received from the cache.
virtual void didReceiveCachedMetadata(WebURLLoader*, const char* data, int dataLength) { }
- // FIXME: remove this method when embedder implement new API.
- virtual void didFinishLoading(WebURLLoader*, double finishTime) { }
-
// Called when the load completes successfully.
// |totalEncodedDataLength| may be equal to kUnknownEncodedDataLength.
- // FIXME: remove default implementation when embedder implement new API.
- virtual void didFinishLoading(WebURLLoader* loader, double finishTime, int64_t totalEncodedDataLength)
- {
- didFinishLoading(loader, finishTime);
- }
+ virtual void didFinishLoading(WebURLLoader* loader, double finishTime, int64_t totalEncodedDataLength) { }
// Called when the load completes with an error.
virtual void didFail(WebURLLoader*, const WebURLError&) { }
« Source/devtools/protocol.json ('K') | « Source/web/tests/AssociatedURLLoaderTest.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698