| Index: third_party/WebKit/Source/core/frame/FrameOwner.h | 
| diff --git a/third_party/WebKit/Source/core/frame/FrameOwner.h b/third_party/WebKit/Source/core/frame/FrameOwner.h | 
| index d19b837910ace798ee062bd8e9c7f2609b3a37e0..1961b28d4a996a132dd1ff4dfc4f96a7e29ef6af 100644 | 
| --- a/third_party/WebKit/Source/core/frame/FrameOwner.h | 
| +++ b/third_party/WebKit/Source/core/frame/FrameOwner.h | 
| @@ -9,6 +9,8 @@ | 
| #include "core/dom/SandboxFlags.h" | 
| #include "platform/heap/Handle.h" | 
| #include "platform/scroll/ScrollTypes.h" | 
| +#include "public/platform/WebVector.h" | 
| +#include "public/platform/modules/permissions/WebPermissionType.h" | 
|  | 
| namespace blink { | 
|  | 
| @@ -39,6 +41,7 @@ public: | 
| virtual int marginWidth() const = 0; | 
| virtual int marginHeight() const = 0; | 
| virtual bool allowFullscreen() const = 0; | 
| +    virtual const WebVector<WebPermissionType>* delegatedPermissions() const = 0; | 
| }; | 
|  | 
| class CORE_EXPORT DummyFrameOwner : public GarbageCollectedFinalized<DummyFrameOwner>, public FrameOwner { | 
| @@ -63,6 +66,7 @@ public: | 
| int marginWidth() const override { return -1; } | 
| int marginHeight() const override { return -1; } | 
| bool allowFullscreen() const override { return false; } | 
| +    const WebVector<WebPermissionType>* delegatedPermissions() const override { return nullptr; } | 
| }; | 
|  | 
| } // namespace blink | 
|  |