| 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 5c315156015e0469f93c9f7e3a0454e3f53952fc..80e27b692d26e4df16a6bca59779edbee4286b2f 100644
|
| --- a/third_party/WebKit/Source/core/fetch/FetchContext.h
|
| +++ b/third_party/WebKit/Source/core/fetch/FetchContext.h
|
| @@ -39,6 +39,7 @@
|
| #include "platform/heap/Handle.h"
|
| #include "platform/network/ResourceLoadPriority.h"
|
| #include "platform/network/ResourceRequest.h"
|
| +#include "public/platform/WebInsecureRequestPolicy.h"
|
| #include "wtf/Noncopyable.h"
|
|
|
| namespace blink {
|
| @@ -170,6 +171,10 @@ class CORE_EXPORT FetchContext
|
|
|
| virtual WebTaskRunner* loadingTaskRunner() const { return nullptr; }
|
|
|
| + virtual WebInsecureRequestPolicy getInsecureRequestPolicy() const {
|
| + return kLeaveInsecureRequestsAlone;
|
| + }
|
| +
|
| protected:
|
| FetchContext() {}
|
| };
|
|
|