Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(248)

Unified Diff: third_party/WebKit/public/platform/WebInsecureRequestPolicy.h

Issue 2046523005: Introduce WebInsecureRequestPolicy. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698