| 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 eab1b4594bf54ddac3c302e7ab7dd46d79b2a211..438246d66ecc022e0f19600ddbb38760b3cf31de 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLIFrameElement.h
|
| +++ b/third_party/WebKit/Source/core/html/HTMLIFrameElement.h
|
| @@ -65,6 +65,7 @@ private:
|
| ReferrerPolicy referrerPolicyAttribute() override;
|
|
|
| bool allowFullscreen() const override { return m_allowFullscreen; }
|
| + bool allowVR() const override { return m_allowVR; }
|
|
|
| const WebVector<WebPermissionType>& delegatedPermissions() const override { return m_delegatedPermissions; }
|
|
|
| @@ -73,6 +74,7 @@ private:
|
| AtomicString m_name;
|
| bool m_didLoadNonEmptyDocument;
|
| bool m_allowFullscreen;
|
| + bool m_allowVR;
|
| Member<HTMLIFrameElementSandbox> m_sandbox;
|
| Member<HTMLIFrameElementPermissions> m_permissions;
|
|
|
|
|