Index: third_party/WebKit/Source/core/fetch/FetchContext.h |
diff --git a/third_party/WebKit/Source/core/fetch/FetchContext.h b/third_party/WebKit/Source/core/fetch/FetchContext.h |
index 818fef96ec6633237ddeb67de308e493ff3a064a..14613ebb303812376dce99631cbc45ded17e75ce 100644 |
--- a/third_party/WebKit/Source/core/fetch/FetchContext.h |
+++ b/third_party/WebKit/Source/core/fetch/FetchContext.h |
@@ -41,6 +41,12 @@ |
#include "platform/network/ResourceRequest.h" |
#include "wtf/Noncopyable.h" |
+namespace wtf { |
yhirano
2016/12/19 11:44:46
wtf/Forward.h
Takashi Toyoshima
2016/12/19 12:58:54
Done.
|
+ |
+class AtomicString; |
+ |
+} // namespace wtf |
+ |
namespace blink { |
class KURL; |
@@ -124,7 +130,9 @@ class CORE_EXPORT FetchContext |
// load actually begins. |
virtual void willStartLoadingResource(unsigned long identifier, |
ResourceRequest&, |
- Resource::Type); |
+ Resource::Type, |
+ const AtomicString& fetchInitiatorName, |
+ bool forPreload); |
virtual void didLoadResource(Resource*); |
virtual void addResourceTiming(const ResourceTimingInfo&); |