| 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 a954edf5bf42f080c9da7b9dc9fccdc2685f55f1..6e1a365e41fc1d0953c3ec7860b060bce29420c5 100644
|
| --- a/third_party/WebKit/Source/web/FrameLoaderClientImpl.cpp
|
| +++ b/third_party/WebKit/Source/web/FrameLoaderClientImpl.cpp
|
| @@ -481,7 +481,9 @@ void FrameLoaderClientImpl::dispatchDidChangeIcons(IconType type)
|
|
|
| void FrameLoaderClientImpl::dispatchDidCommitLoad(HistoryItem* item, HistoryCommitType commitType)
|
| {
|
| - m_webFrame->viewImpl()->didCommitLoad(commitType == StandardCommit, false);
|
| + if (!m_webFrame->parent()) {
|
| + m_webFrame->viewImpl()->didCommitLoad(commitType == StandardCommit, false);
|
| + }
|
|
|
| // Save some histogram data so we can compute the average memory used per
|
| // page load of the glyphs.
|
|
|