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

Unified Diff: Source/web/FrameLoaderClientImpl.cpp

Issue 1132133009: Plumb whether or not a frame is in shadow DOM to the embedder. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Address review comments Created 5 years, 7 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
« no previous file with comments | « Source/web/FrameLoaderClientImpl.h ('k') | Source/web/RemoteFrameClientImpl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/FrameLoaderClientImpl.cpp
diff --git a/Source/web/FrameLoaderClientImpl.cpp b/Source/web/FrameLoaderClientImpl.cpp
index 802c78b23d51525b29d5d6f8cbe42ed0f3b473a3..a73a83a8cd1b669d99366c5c9269cd5f3b2c793c 100644
--- a/Source/web/FrameLoaderClientImpl.cpp
+++ b/Source/web/FrameLoaderClientImpl.cpp
@@ -267,6 +267,11 @@ bool FrameLoaderClientImpl::hasWebView() const
return m_webFrame->viewImpl();
}
+bool FrameLoaderClientImpl::inShadowTree() const
+{
+ return m_webFrame->inShadowTree();
+}
+
Frame* FrameLoaderClientImpl::opener() const
{
return toCoreFrame(m_webFrame->opener());
« no previous file with comments | « Source/web/FrameLoaderClientImpl.h ('k') | Source/web/RemoteFrameClientImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698