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

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, 9 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 92d8f5c9da20cf3177ee24b6038b0370238bfe2f..de7f4d70cc27b8cf8f3512838623d5e1cff7cd3a 100644
--- a/third_party/WebKit/Source/core/fetch/Resource.h
+++ b/third_party/WebKit/Source/core/fetch/Resource.h
@@ -170,7 +170,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;
@@ -258,7 +258,6 @@ protected:
Resource(const ResourceRequest&, Type);
virtual void checkNotify();
- virtual void finishOnePart();
virtual void destroyDecodedDataForFailedRevalidation() { }

Powered by Google App Engine
This is Rietveld 408576698