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