Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(808)

Unified Diff: Source/web/FrameLoaderClientImpl.cpp

Issue 249633002: Detect <link rel='manifest'> and notify embedder. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: error 500 Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698