Index: third_party/WebKit/Source/core/fetch/FetchContext.cpp |
diff --git a/third_party/WebKit/Source/core/fetch/FetchContext.cpp b/third_party/WebKit/Source/core/fetch/FetchContext.cpp |
index de0b4cf99e25eab50cb1fa36b6fe82a49cce66cb..3278e745661b02c9ed9946a23701742e21b4a07d 100644 |
--- a/third_party/WebKit/Source/core/fetch/FetchContext.cpp |
+++ b/third_party/WebKit/Source/core/fetch/FetchContext.cpp |
@@ -76,14 +76,18 @@ void FetchContext::dispatchDidReceiveResponse(unsigned long, |
void FetchContext::dispatchDidReceiveData(unsigned long, |
const char*, |
- int, |
int) {} |
+void FetchContext::dispatchDidReceiveEncodedData(unsigned long, int) {} |
+ |
void FetchContext::dispatchDidDownloadData(unsigned long, int, int) {} |
void FetchContext::dispatchDidFinishLoading(unsigned long, double, int64_t) {} |
-void FetchContext::dispatchDidFail(unsigned long, const ResourceError&, bool) {} |
+void FetchContext::dispatchDidFail(unsigned long, |
+ const ResourceError&, |
+ int64_t, |
+ bool) {} |
void FetchContext::willStartLoadingResource(unsigned long, |
ResourceRequest&, |