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

Unified Diff: third_party/WebKit/public/platform/Platform.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
Index: third_party/WebKit/public/platform/Platform.h
diff --git a/third_party/WebKit/public/platform/Platform.h b/third_party/WebKit/public/platform/Platform.h
index d623c5a5d6fa57cb244877de947a0c4d7fd83b0a..4c35016aac598c0d72baba0dc048ea2657ccf8da 100644
--- a/third_party/WebKit/public/platform/Platform.h
+++ b/third_party/WebKit/public/platform/Platform.h
@@ -41,6 +41,7 @@
#include "WebCommon.h"
#include "WebData.h"
#include "WebDeviceLightListener.h"
+#include "WebFeaturePolicy.h"
#include "WebGamepadListener.h"
#include "WebGamepads.h"
#include "WebGestureDevice.h"
@@ -669,6 +670,20 @@ class BLINK_PLATFORM_EXPORT Platform {
virtual WebTrialTokenValidator* trialTokenValidator() { return nullptr; }
+ // Feature Policy -----------------------------------------------------
+
+ virtual WebFeaturePolicy* createFeaturePolicy(
+ const WebFeaturePolicy* parentPolicy,
+ const WebParsedFeaturePolicyHeader& policyHeader,
+ const WebSecurityOrigin&) {
+ return nullptr;
+ }
+ virtual bool isFeatureEnabledByPolicy(const WebFeaturePolicy*,
+ WebFeaturePolicyFeature,
+ const WebSecurityOrigin&) {
+ return true;
+ }
+
protected:
Platform();
virtual ~Platform() {}
« no previous file with comments | « third_party/WebKit/Source/web/WebRemoteFrameImpl.cpp ('k') | third_party/WebKit/public/platform/WebFeaturePolicy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698