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

Unified Diff: Source/web/WebLocalFrameImpl.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/WebLocalFrameImpl.cpp
diff --git a/Source/web/WebLocalFrameImpl.cpp b/Source/web/WebLocalFrameImpl.cpp
index e9cd610cc75d86b134db6dc57df9d4b93e15d515..12b5bab13d5dff007b7a3c5979c66dc4ef81554f 100644
--- a/Source/web/WebLocalFrameImpl.cpp
+++ b/Source/web/WebLocalFrameImpl.cpp
@@ -748,6 +748,11 @@ WebPerformance WebLocalFrameImpl::performance() const
return WebPerformance(&frame()->domWindow()->performance());
}
+WebURL WebLocalFrameImpl::manifestURL() const
+{
+ return frame()->document()->manifestURL();
+}
+
bool WebLocalFrameImpl::dispatchBeforeUnloadEvent()
{
if (!frame())

Powered by Google App Engine
This is Rietveld 408576698