| Index: third_party/WebKit/Source/platform/loader/fetch/FetchContext.cpp
|
| diff --git a/third_party/WebKit/Source/platform/loader/fetch/FetchContext.cpp b/third_party/WebKit/Source/platform/loader/fetch/FetchContext.cpp
|
| index c9ccce9113ccd16dd428df0adf5961a154c3ad25..850651c5a2953555f0790f166600591ca4d2ceab 100644
|
| --- a/third_party/WebKit/Source/platform/loader/fetch/FetchContext.cpp
|
| +++ b/third_party/WebKit/Source/platform/loader/fetch/FetchContext.cpp
|
| @@ -53,6 +53,8 @@ WebCachePolicy FetchContext::resourceRequestCachePolicy(
|
| return WebCachePolicy::UseProtocolCachePolicy;
|
| }
|
|
|
| +void FetchContext::prepareRequest(ResourceRequest&, RedirectType) {}
|
| +
|
| void FetchContext::dispatchWillSendRequest(unsigned long,
|
| ResourceRequest&,
|
| const ResourceResponse&,
|
| @@ -86,12 +88,11 @@ void FetchContext::dispatchDidFail(unsigned long,
|
| int64_t,
|
| bool) {}
|
|
|
| -void FetchContext::willStartLoadingResource(
|
| +void FetchContext::recordLoadingActivity(
|
| unsigned long,
|
| - ResourceRequest&,
|
| + const ResourceRequest&,
|
| Resource::Type,
|
| - const AtomicString& fetchInitiatorName,
|
| - V8ActivityLoggingPolicy) {}
|
| + const AtomicString& fetchInitiatorName) {}
|
|
|
| void FetchContext::didLoadResource(Resource*) {}
|
|
|
|
|