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

Unified Diff: Source/web/RemoteBridgeFrameOwner.cpp

Issue 1319863006: (blink) Propagate scrolling/marginwidth/marginheight property values to child frame. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: address comments + static_cast for enum conversion Created 5 years, 3 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/RemoteBridgeFrameOwner.cpp
diff --git a/Source/web/RemoteBridgeFrameOwner.cpp b/Source/web/RemoteBridgeFrameOwner.cpp
index 51afd66fa37a425ddd54e99086b26770d93273cb..bdb04b5e5f95473dcfa7fad3f0b6e5a020a5a8ee 100644
--- a/Source/web/RemoteBridgeFrameOwner.cpp
+++ b/Source/web/RemoteBridgeFrameOwner.cpp
@@ -12,6 +12,9 @@ namespace blink {
RemoteBridgeFrameOwner::RemoteBridgeFrameOwner(PassRefPtrWillBeRawPtr<WebLocalFrameImpl> frame, SandboxFlags flags)
: m_frame(frame)
, m_sandboxFlags(flags)
+ , m_scrolling(ScrollbarAuto)
alexmos 2015/09/02 21:37:06 Any reason for not plumbing the initial values her
lazyboy 2015/09/15 01:40:33 I've moved the initial values to constructor.
+ , m_marginWidth(-1)
+ , m_marginHeight(-1)
{
}

Powered by Google App Engine
This is Rietveld 408576698