| Index: third_party/WebKit/Source/core/frame/LocalDOMWindow.h
|
| diff --git a/third_party/WebKit/Source/core/frame/LocalDOMWindow.h b/third_party/WebKit/Source/core/frame/LocalDOMWindow.h
|
| index 8ee4fc9cc5a6f2db585c8af409b5a29c3d282a21..0280131d4dce2d7d68ed15f274bf2cbdeb10a95a 100644
|
| --- a/third_party/WebKit/Source/core/frame/LocalDOMWindow.h
|
| +++ b/third_party/WebKit/Source/core/frame/LocalDOMWindow.h
|
| @@ -146,7 +146,6 @@ public:
|
| int requestIdleCallback(IdleRequestCallback*, const IdleRequestOptions&) override;
|
| void cancelIdleCallback(int id) override;
|
| CustomElementsRegistry* customElements() const override;
|
| - void schedulePostMessage(MessageEvent*, SecurityOrigin* target, PassRefPtr<ScriptCallStack>);
|
|
|
| void registerProperty(DOMWindowProperty*);
|
| void unregisterProperty(DOMWindowProperty*);
|
| @@ -206,6 +205,9 @@ protected:
|
| void addedEventListener(const AtomicString& eventType, RegisteredEventListener&) override;
|
| void removedEventListener(const AtomicString& eventType, const RegisteredEventListener&) override;
|
|
|
| + // Protected DOMWindow overrides.
|
| + void schedulePostMessage(MessageEvent*, PassRefPtr<SecurityOrigin> target, Document* source) override;
|
| +
|
| private:
|
| class WindowFrameObserver;
|
|
|
|
|