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

Unified Diff: third_party/WebKit/Source/core/fetch/Resource.h

Issue 1710733002: Move multipart resource handling to core/fetch (2/2) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@multipart-cleanup
Patch Set: Created 4 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: third_party/WebKit/Source/core/fetch/Resource.h
diff --git a/third_party/WebKit/Source/core/fetch/Resource.h b/third_party/WebKit/Source/core/fetch/Resource.h
index 2dd436953333993acbc6cce65d52bdc257d6a37b..1bea4ff2585c02ea93c8989744f9e5054adca8d8 100644
--- a/third_party/WebKit/Source/core/fetch/Resource.h
+++ b/third_party/WebKit/Source/core/fetch/Resource.h
@@ -175,7 +175,7 @@ public:
// Computes the status of an object after loading.
// Updates the expire date on the cache entry file
void setLoadFinishTime(double finishTime) { m_loadFinishTime = finishTime; }
- void finish();
+ virtual void finish();
// FIXME: Remove the stringless variant once all the callsites' error messages are updated.
bool passesAccessControlCheck(SecurityOrigin*) const;
@@ -270,7 +270,6 @@ protected:
Resource(const ResourceRequest&, Type);
virtual void checkNotify();
- virtual void finishOnePart();
virtual void destroyDecodedDataForFailedRevalidation() { }

Powered by Google App Engine
This is Rietveld 408576698