| Index: third_party/WebKit/Source/core/loader/FrameFetchContext.h
|
| diff --git a/third_party/WebKit/Source/core/loader/FrameFetchContext.h b/third_party/WebKit/Source/core/loader/FrameFetchContext.h
|
| index b30cecf4fcfcb33db07037aae828798616ef45dd..de7850a10b12090c36d0c86a2ac5ea48051e9a8a 100644
|
| --- a/third_party/WebKit/Source/core/loader/FrameFetchContext.h
|
| +++ b/third_party/WebKit/Source/core/loader/FrameFetchContext.h
|
| @@ -81,6 +81,7 @@ class CORE_EXPORT FrameFetchContext final : public FetchContext {
|
| void dispatchDidChangeResourcePriority(unsigned long identifier,
|
| ResourceLoadPriority,
|
| int intraPriorityValue) override;
|
| + void prepareRequest(ResourceRequest&, RedirectType) override;
|
| void dispatchWillSendRequest(
|
| unsigned long identifier,
|
| ResourceRequest&,
|
| @@ -114,11 +115,10 @@ class CORE_EXPORT FrameFetchContext final : public FetchContext {
|
| bool isInternalRequest) override;
|
|
|
| bool shouldLoadNewResource(Resource::Type) const override;
|
| - void willStartLoadingResource(unsigned long identifier,
|
| - ResourceRequest&,
|
| - Resource::Type,
|
| - const AtomicString& fetchInitiatorName,
|
| - V8ActivityLoggingPolicy) override;
|
| + void recordLoadingActivity(unsigned long identifier,
|
| + const ResourceRequest&,
|
| + Resource::Type,
|
| + const AtomicString& fetchInitiatorName) override;
|
| void didLoadResource(Resource*) override;
|
|
|
| void addResourceTiming(const ResourceTimingInfo&) override;
|
| @@ -194,8 +194,6 @@ class CORE_EXPORT FrameFetchContext final : public FetchContext {
|
| FetchRequest::OriginRestriction,
|
| ResourceRequest::RedirectStatus) const;
|
|
|
| - void prepareRequest(ResourceRequest&);
|
| -
|
| void dispatchDidReceiveResponseInternal(unsigned long identifier,
|
| const ResourceResponse&,
|
| WebURLRequest::FrameType,
|
|
|