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

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

Issue 2636843003: Move most Feature Policy code into content/ (Closed)
Patch Set: Addressing review comments Created 3 years, 11 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
« no previous file with comments | « third_party/WebKit/public/platform/Platform.h ('k') | third_party/WebKit/public/web/WebFrameClient.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/public/platform/WebFeaturePolicy.h
diff --git a/third_party/WebKit/public/platform/WebFeaturePolicy.h b/third_party/WebKit/public/platform/WebFeaturePolicy.h
index a2c03f79605f67d1a78cbbdc5b27ad6869d3a1f9..550b314f62cee1a30feea68a3e47cc890f1f3ba5 100644
--- a/third_party/WebKit/public/platform/WebFeaturePolicy.h
+++ b/third_party/WebKit/public/platform/WebFeaturePolicy.h
@@ -11,16 +11,49 @@
namespace blink {
-struct WebFeaturePolicy {
- struct ParsedWhitelist {
- ParsedWhitelist() : matchesAllOrigins(false) {}
- WebString featureName;
- bool matchesAllOrigins;
- WebVector<WebSecurityOrigin> origins;
- };
+enum class WebFeaturePolicyFeature {
+ NotFound = 0,
+ DocumentCookie,
+ DocumentDomain,
+ DocumentWrite,
+ Geolocation,
+ Fullscreen,
+ MidiFeature,
+ Notifications,
+ Payment,
+ Push,
+ SyncScript,
+ SyncXHR,
+ Usermedia,
+ Vibrate,
+ WebRTC,
+ LAST_FEATURE = WebRTC
};
-using WebParsedFeaturePolicy = WebVector<WebFeaturePolicy::ParsedWhitelist>;
+// Structure common to WebParsedFeature and WebParsedFeaturePolicyItem.
+struct WebParsedWhitelist {
+ WebParsedWhitelist() : matchesAllOrigins(false) {}
+ bool matchesAllOrigins;
+ WebVector<WebSecurityOrigin> origins;
+};
+
+// Single item out of a declared header policy or iframe allow* attribute.
+struct WebParsedFeaturePolicyDeclaration {
+ WebString featureName;
+ WebParsedWhitelist whitelist;
+};
+
+// Used in Blink code to represent parsed headers. Used for IPC between renderer
+// and browser.
+using WebParsedFeaturePolicyHeader =
+ WebVector<WebParsedFeaturePolicyDeclaration>;
+
+// Composed full policy for a document. Stored in SecurityContext for each
+// document. This is essentially an opaque handle to an object in the embedder.
+class WebFeaturePolicy {
+ public:
+ virtual ~WebFeaturePolicy() {}
+};
} // namespace blink
« no previous file with comments | « third_party/WebKit/public/platform/Platform.h ('k') | third_party/WebKit/public/web/WebFrameClient.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698