Chromium Code Reviews

Unified Diff: third_party/WebKit/Source/core/html/HTMLIFrameElement.h

Issue 2697713003: Initial Implementation of Iframe Attribute for Feature Policy (Part 2) (Closed)
Patch Set: Initial Impl Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: third_party/WebKit/Source/core/html/HTMLIFrameElement.h
diff --git a/third_party/WebKit/Source/core/html/HTMLIFrameElement.h b/third_party/WebKit/Source/core/html/HTMLIFrameElement.h
index effd2136ba3a15f0eaa85457167b4413ffd16f37..61d83cc1908f70c129879621ac633d6204d2aa6e 100644
--- a/third_party/WebKit/Source/core/html/HTMLIFrameElement.h
+++ b/third_party/WebKit/Source/core/html/HTMLIFrameElement.h
@@ -85,6 +85,10 @@ class CORE_EXPORT HTMLIFrameElement final
const override {
return m_delegatedPermissions;
}
+ const WebVector<WebFeaturePolicyFeature>& allowedFeatureNames()
+ const override {
+ return m_allowedFeatureNames;
+ }
bool initializePermissionsAttribute();

Powered by Google App Engine