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

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

Issue 679863002: Revert "Prepare blink to unify definitions of load completion" (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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 | « Source/core/fetch/ResourceLoader.cpp ('k') | Source/core/loader/FrameFetchContext.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/fetch/ResourceLoaderHost.h
diff --git a/Source/core/fetch/ResourceLoaderHost.h b/Source/core/fetch/ResourceLoaderHost.h
index 23861349b56493eb1a229d798654d9d4d8102a34..3062ea8bbd01964abedcd089cf916d4318116cee 100644
--- a/Source/core/fetch/ResourceLoaderHost.h
+++ b/Source/core/fetch/ResourceLoaderHost.h
@@ -47,10 +47,10 @@ class ResourceLoaderHost : public WillBeGarbageCollectedMixin {
public:
virtual void incrementRequestCount(const Resource*) = 0;
virtual void decrementRequestCount(const Resource*) = 0;
- virtual void didLoadResource() = 0;
+ virtual void didLoadResource(Resource*) = 0;
virtual void redirectReceived(Resource*, const ResourceResponse&) = 0;
- virtual void didFinishLoading(Resource*, double finishTime, int64_t encodedDataLength) = 0;
+ virtual void didFinishLoading(const Resource*, double finishTime, int64_t encodedDataLength) = 0;
virtual void didChangeLoadingPriority(const Resource*, ResourceLoadPriority, int intraPriorityValue) = 0;
virtual void didFailLoading(const Resource*, const ResourceError&) = 0;
« no previous file with comments | « Source/core/fetch/ResourceLoader.cpp ('k') | Source/core/loader/FrameFetchContext.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698