| 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..b1374437df272d4abd4737d946f547aa38fe6603 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLIFrameElement.h
|
| +++ b/third_party/WebKit/Source/core/html/HTMLIFrameElement.h
|
| @@ -85,6 +85,9 @@ class CORE_EXPORT HTMLIFrameElement final
|
| const override {
|
| return m_delegatedPermissions;
|
| }
|
| + const WebVector<WebFeaturePolicyFeature>& allowedFeatures() const override {
|
| + return m_allowedFeatures;
|
| + }
|
|
|
| bool initializePermissionsAttribute();
|
|
|
| @@ -98,7 +101,7 @@ class CORE_EXPORT HTMLIFrameElement final
|
| Member<HTMLIFrameElementAllow> m_allow;
|
|
|
| WebVector<mojom::blink::PermissionName> m_delegatedPermissions;
|
| - WebVector<WebFeaturePolicyFeature> m_allowedFeatureNames;
|
| + WebVector<WebFeaturePolicyFeature> m_allowedFeatures;
|
|
|
| ReferrerPolicy m_referrerPolicy;
|
| };
|
|
|