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

Unified Diff: Source/web/WebFrame.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/RemoteFrameClientImpl.cpp ('k') | Source/web/WebLocalFrameImpl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/WebFrame.cpp
diff --git a/Source/web/WebFrame.cpp b/Source/web/WebFrame.cpp
index 81efddf6bc4712f639f17164bcccc5ed02b2f25d..8b7047c155e7cf944828b1b980e0615a91fac34e 100644
--- a/Source/web/WebFrame.cpp
+++ b/Source/web/WebFrame.cpp
@@ -268,8 +268,9 @@ WebFrame* WebFrame::fromFrame(Frame* frame)
return WebRemoteFrameImpl::fromFrame(toRemoteFrame(*frame));
}
-WebFrame::WebFrame()
- : m_parent(0)
+WebFrame::WebFrame(WebTreeScopeType scope)
+ : m_scope(scope)
+ , m_parent(0)
, m_previousSibling(0)
, m_nextSibling(0)
, m_firstChild(0)
« no previous file with comments | « Source/web/RemoteFrameClientImpl.cpp ('k') | Source/web/WebLocalFrameImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698