| Index: third_party/WebKit/Source/web/LocalFrameClientImpl.cpp
|
| diff --git a/third_party/WebKit/Source/web/LocalFrameClientImpl.cpp b/third_party/WebKit/Source/web/LocalFrameClientImpl.cpp
|
| index 0d92d85ed5212ae9ed6c054288d3a0f04669b3ce..6b98410cf79d55741ed25a36089eddbf2f074a0b 100644
|
| --- a/third_party/WebKit/Source/web/LocalFrameClientImpl.cpp
|
| +++ b/third_party/WebKit/Source/web/LocalFrameClientImpl.cpp
|
| @@ -190,6 +190,12 @@ void LocalFrameClientImpl::runScriptsAtDocumentReady(bool documentIsEmpty) {
|
| // The callback might have deleted the frame, do not use |this|!
|
| }
|
|
|
| +void LocalFrameClientImpl::runScriptsAtDocumentIdle() {
|
| + if (m_webFrame->client())
|
| + m_webFrame->client()->runScriptsAtDocumentIdle(m_webFrame);
|
| + // The callback might have deleted the frame, do not use |this|!
|
| +}
|
| +
|
| void LocalFrameClientImpl::didCreateScriptContext(
|
| v8::Local<v8::Context> context,
|
| int worldId) {
|
|
|