| Index: third_party/WebKit/Source/core/html/HTMLFrameOwnerElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLFrameOwnerElement.cpp b/third_party/WebKit/Source/core/html/HTMLFrameOwnerElement.cpp
|
| index 6e9a63762a6e5e319ab95e4ad4ca7c78ba91ca00..2496c66f261334efec6b0f291a0b9107f7e6e9f5 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLFrameOwnerElement.cpp
|
| +++ b/third_party/WebKit/Source/core/html/HTMLFrameOwnerElement.cpp
|
| @@ -215,6 +215,12 @@ void HTMLFrameOwnerElement::dispatchLoad()
|
| dispatchScopedEvent(Event::create(EventTypeNames::load));
|
| }
|
|
|
| +const WebVector<WebPermissionType>& HTMLFrameOwnerElement::delegatedPermissions() const
|
| +{
|
| + DEFINE_STATIC_LOCAL(WebVector<WebPermissionType>, permissions, ());
|
| + return permissions;
|
| +}
|
| +
|
| Document* HTMLFrameOwnerElement::getSVGDocument(ExceptionState& exceptionState) const
|
| {
|
| Document* doc = contentDocument();
|
|
|