| Index: third_party/WebKit/public/platform/WebInsecureRequestPolicy.h
|
| diff --git a/third_party/WebKit/public/platform/WebInsecureRequestPolicy.h b/third_party/WebKit/public/platform/WebInsecureRequestPolicy.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..8d468269f04a3ba26feb820439402fa14a67d4c9
|
| --- /dev/null
|
| +++ b/third_party/WebKit/public/platform/WebInsecureRequestPolicy.h
|
| @@ -0,0 +1,21 @@
|
| +// Copyright (c) 2016 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#ifndef WebInsecureRequestPolicy_h
|
| +#define WebInsecureRequestPolicy_h
|
| +
|
| +namespace blink {
|
| +
|
| +// TODO(mkwst): In an ideal world, the combined state would be the same as
|
| +// "Upgrade". Once we're consistently upgrading all requests, we can replace
|
| +// this bitfield-style representation with an enum. Until then, we need to
|
| +// ensure that all relevant flags are set. https://crbug.com/617584
|
| +using WebInsecureRequestPolicy = uint8_t;
|
| +const WebInsecureRequestPolicy kLeaveInsecureRequestsAlone = 0;
|
| +const WebInsecureRequestPolicy kUpgradeInsecureRequests = 1 << 0;
|
| +const WebInsecureRequestPolicy kBlockAllMixedContent = 1 << 1;
|
| +
|
| +} // namespace blink
|
| +
|
| +#endif // WebInsecureRequestPolicy_h
|
|
|