| Index: Source/core/fetch/FetchRequest.cpp
|
| diff --git a/Source/core/fetch/FetchRequest.cpp b/Source/core/fetch/FetchRequest.cpp
|
| index 5962054a5eb5ddc2193545b4941d31ee605a8f40..1058af7c10d72ff5684df947b0abf2548be72d0c 100644
|
| --- a/Source/core/fetch/FetchRequest.cpp
|
| +++ b/Source/core/fetch/FetchRequest.cpp
|
| @@ -37,6 +37,8 @@ FetchRequest::FetchRequest(const ResourceRequest& resourceRequest, const AtomicS
|
| , m_options(ResourceFetcher::defaultResourceOptions())
|
| , m_priority(priority)
|
| , m_forPreload(false)
|
| + , m_isBeforeBody(false)
|
| + , m_execAsync(false)
|
| , m_defer(NoDefer)
|
| , m_originRestriction(UseDefaultOriginRestrictionForType)
|
| {
|
| @@ -48,6 +50,8 @@ FetchRequest::FetchRequest(const ResourceRequest& resourceRequest, const AtomicS
|
| , m_options(options)
|
| , m_priority(ResourceLoadPriorityUnresolved)
|
| , m_forPreload(false)
|
| + , m_isBeforeBody(false)
|
| + , m_execAsync(false)
|
| , m_defer(NoDefer)
|
| , m_originRestriction(UseDefaultOriginRestrictionForType)
|
| {
|
| @@ -59,6 +63,8 @@ FetchRequest::FetchRequest(const ResourceRequest& resourceRequest, const FetchIn
|
| , m_options(ResourceFetcher::defaultResourceOptions())
|
| , m_priority(ResourceLoadPriorityUnresolved)
|
| , m_forPreload(false)
|
| + , m_isBeforeBody(false)
|
| + , m_execAsync(false)
|
| , m_defer(NoDefer)
|
| , m_originRestriction(UseDefaultOriginRestrictionForType)
|
| {
|
|
|