Chromium Code Reviews| 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 549f3019fca3abc6dda694c20940941d20809e53..b3994c581669592120e4fa5174dcfdc3f1b6207a 100644 |
| --- a/third_party/WebKit/Source/core/loader/FrameFetchContext.h |
| +++ b/third_party/WebKit/Source/core/loader/FrameFetchContext.h |
| @@ -39,6 +39,12 @@ |
| #include "platform/heap/Handle.h" |
| #include "platform/network/ResourceRequest.h" |
| +namespace wtf { |
|
yhirano
2016/12/19 11:44:46
ditto
Takashi Toyoshima
2016/12/19 12:58:54
Done.
|
| + |
| +class AtomicString; |
| + |
| +} // namespace wtf |
| + |
| namespace blink { |
| class Document; |
| @@ -112,7 +118,9 @@ class CORE_EXPORT FrameFetchContext final : public FetchContext { |
| bool shouldLoadNewResource(Resource::Type) const override; |
| void willStartLoadingResource(unsigned long identifier, |
| ResourceRequest&, |
| - Resource::Type) override; |
| + Resource::Type, |
| + const AtomicString& fetchInitiatorName, |
| + bool forPreload) override; |
| void didLoadResource(Resource*) override; |
| void addResourceTiming(const ResourceTimingInfo&) override; |