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

Unified Diff: Source/core/fetch/ResourceFetcher.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, 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
Index: Source/core/fetch/ResourceFetcher.h
diff --git a/Source/core/fetch/ResourceFetcher.h b/Source/core/fetch/ResourceFetcher.h
index 531ae3a1054ed61a1e313516119e0ff50d96ca37..e26522ef85a8c17d537728bbe077096457e97e81 100644
--- a/Source/core/fetch/ResourceFetcher.h
+++ b/Source/core/fetch/ResourceFetcher.h
@@ -138,7 +138,7 @@ public:
virtual void decrementRequestCount(const Resource*) override;
virtual void didLoadResource(Resource*) override;
virtual void redirectReceived(Resource*, const ResourceResponse&) override;
- virtual void didFinishLoading(const Resource*, double finishTime, int64_t encodedDataLength) override;
+ virtual void didFinishLoading(Resource*, double finishTime, int64_t encodedDataLength) override;
virtual void didChangeLoadingPriority(const Resource*, ResourceLoadPriority, int intraPriorityValue) override;
virtual void didFailLoading(const Resource*, const ResourceError&) override;
virtual void willSendRequest(unsigned long identifier, ResourceRequest&, const ResourceResponse& redirectResponse, const FetchInitiatorInfo&) override;

Powered by Google App Engine
This is Rietveld 408576698