Chromium Code Reviews| Index: Source/web/FrameLoaderClientImpl.cpp |
| diff --git a/Source/web/FrameLoaderClientImpl.cpp b/Source/web/FrameLoaderClientImpl.cpp |
| index 7c3b52d74e50761451e76c140d80d860ce16ee87..d6583fe6f0433ecd0e758457953e3970719f3a7b 100644 |
| --- a/Source/web/FrameLoaderClientImpl.cpp |
| +++ b/Source/web/FrameLoaderClientImpl.cpp |
| @@ -806,4 +806,10 @@ void FrameLoaderClientImpl::didStopAllLoaders() |
| m_webFrame->client()->didAbortLoading(m_webFrame); |
| } |
| +void FrameLoaderClientImpl::dispatchDidChangeManifest() |
| +{ |
| + if (m_webFrame->client()) |
| + m_webFrame->client()->didChangeManifest(m_webFrame); |
|
abarth-chromium
2014/05/01 17:51:16
Why not pass the manifest URL along in this notifi
mlamouri (slow - plz ping)
2014/05/01 18:00:09
I tried to stay consistent with how icons update a
|
| +} |
| + |
| } // namespace blink |