| Index: third_party/WebKit/Source/core/loader/EmptyClients.cpp
|
| diff --git a/third_party/WebKit/Source/core/loader/EmptyClients.cpp b/third_party/WebKit/Source/core/loader/EmptyClients.cpp
|
| index 977d16b07fcf8cc20892c8c0429654784c948cb3..812954ab5784a6d87007177d4d270daf8cdc54ab 100644
|
| --- a/third_party/WebKit/Source/core/loader/EmptyClients.cpp
|
| +++ b/third_party/WebKit/Source/core/loader/EmptyClients.cpp
|
| @@ -75,6 +75,7 @@ class EmptyFrameScheduler : public WebFrameScheduler {
|
| RefPtr<WebTaskRunner> loadingTaskRunner() override;
|
| RefPtr<WebTaskRunner> timerTaskRunner() override;
|
| RefPtr<WebTaskRunner> unthrottledTaskRunner() override;
|
| + RefPtr<WebTaskRunner> suspendableTaskRunner() override;
|
| };
|
|
|
| RefPtr<WebTaskRunner> EmptyFrameScheduler::loadingTaskRunner() {
|
| @@ -89,6 +90,10 @@ RefPtr<WebTaskRunner> EmptyFrameScheduler::unthrottledTaskRunner() {
|
| return Platform::current()->mainThread()->getWebTaskRunner();
|
| }
|
|
|
| +RefPtr<WebTaskRunner> EmptyFrameScheduler::suspendableTaskRunner() {
|
| + return Platform::current()->mainThread()->getWebTaskRunner();
|
| +}
|
| +
|
| PopupMenu* EmptyChromeClient::openPopupMenu(LocalFrame&, HTMLSelectElement&) {
|
| return new EmptyPopupMenu();
|
| }
|
|
|