| Index: third_party/WebKit/Source/core/fetch/FetchRequest.cpp
|
| diff --git a/third_party/WebKit/Source/core/fetch/FetchRequest.cpp b/third_party/WebKit/Source/core/fetch/FetchRequest.cpp
|
| index eeb6ea61f2d5ab740a88079b670ad7b6adc196c2..e2c5a92fac712e8f100a1a635102ee6802e3bc13 100644
|
| --- a/third_party/WebKit/Source/core/fetch/FetchRequest.cpp
|
| +++ b/third_party/WebKit/Source/core/fetch/FetchRequest.cpp
|
| @@ -42,7 +42,8 @@ FetchRequest::FetchRequest(const ResourceRequest& resourceRequest,
|
| m_preloadDiscoveryTime(0.0),
|
| m_defer(NoDefer),
|
| m_originRestriction(UseDefaultOriginRestrictionForType),
|
| - m_placeholderImageRequestType(DisallowPlaceholder) {
|
| + m_placeholderImageRequestType(DisallowPlaceholder),
|
| + m_isCacheAwareLoadingEnabled(false) {
|
| m_options.initiatorInfo.name = initiator;
|
| }
|
|
|
| @@ -57,7 +58,8 @@ FetchRequest::FetchRequest(const ResourceRequest& resourceRequest,
|
| m_defer(NoDefer),
|
| m_originRestriction(UseDefaultOriginRestrictionForType),
|
| m_placeholderImageRequestType(
|
| - PlaceholderImageRequestType::DisallowPlaceholder) {
|
| + PlaceholderImageRequestType::DisallowPlaceholder),
|
| + m_isCacheAwareLoadingEnabled(false) {
|
| m_options.initiatorInfo.name = initiator;
|
| }
|
|
|
| @@ -71,7 +73,8 @@ FetchRequest::FetchRequest(const ResourceRequest& resourceRequest,
|
| m_defer(NoDefer),
|
| m_originRestriction(UseDefaultOriginRestrictionForType),
|
| m_placeholderImageRequestType(
|
| - PlaceholderImageRequestType::DisallowPlaceholder) {
|
| + PlaceholderImageRequestType::DisallowPlaceholder),
|
| + m_isCacheAwareLoadingEnabled(false) {
|
| m_options.initiatorInfo = initiator;
|
| }
|
|
|
|
|