| Index: third_party/WebKit/Source/core/loader/FrameFetchContext.cpp
|
| diff --git a/third_party/WebKit/Source/core/loader/FrameFetchContext.cpp b/third_party/WebKit/Source/core/loader/FrameFetchContext.cpp
|
| index 54838d534a03af615adc944e7fb6c12f5d7cc371..684420e780f82ee13bec4781c60edb29c5e06f2f 100644
|
| --- a/third_party/WebKit/Source/core/loader/FrameFetchContext.cpp
|
| +++ b/third_party/WebKit/Source/core/loader/FrameFetchContext.cpp
|
| @@ -867,6 +867,13 @@ void FrameFetchContext::modifyRequestForCSP(ResourceRequest& resourceRequest) {
|
| frame()->loader().modifyRequestForCSP(resourceRequest, m_document);
|
| }
|
|
|
| +WebInsecureRequestPolicy FrameFetchContext::getInsecureRequestPolicy() const {
|
| + // If no document is present (during frame navigation, for instance), use the
|
| + // FrameLoader's policy.
|
| + return m_document ? m_document->getInsecureRequestPolicy()
|
| + : frame()->loader().getInsecureRequestPolicy();
|
| +}
|
| +
|
| void FrameFetchContext::addClientHintsIfNecessary(FetchRequest& fetchRequest) {
|
| if (!RuntimeEnabledFeatures::clientHintsEnabled() || !m_document)
|
| return;
|
|
|