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

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

Issue 561813003: Prepare blink to unify definitions of load completion (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 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
Index: Source/core/fetch/ResourceLoaderHost.h
diff --git a/Source/core/fetch/ResourceLoaderHost.h b/Source/core/fetch/ResourceLoaderHost.h
index bdb4c59bbfe9986a35cbd35255b61013534af64f..c5251b920ce609295cd123846f0da57397bb1fd7 100644
--- a/Source/core/fetch/ResourceLoaderHost.h
+++ b/Source/core/fetch/ResourceLoaderHost.h
@@ -52,7 +52,7 @@ public:
virtual void didLoadResource(Resource*) = 0;
virtual void redirectReceived(Resource*, const ResourceResponse&) = 0;
- virtual void didFinishLoading(const Resource*, double finishTime, int64_t encodedDataLength) = 0;
+ virtual void didFinishLoading(Resource*, double finishTime, int64_t encodedDataLength) = 0;
virtual void didChangeLoadingPriority(const Resource*, ResourceLoadPriority, int intraPriorityValue) = 0;
virtual void didFailLoading(const Resource*, const ResourceError&) = 0;

Powered by Google App Engine
This is Rietveld 408576698