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

Unified Diff: Source/core/frame/Frame.cpp

Issue 104433003: Attach a WebLayer to a frame element for out-of-process iframes. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Moved WebLayer back to Frame again. Created 7 years 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/core/frame/Frame.cpp
diff --git a/Source/core/frame/Frame.cpp b/Source/core/frame/Frame.cpp
index 3109cb225fd777456bebb6368d9ca6efa6162734..119fc4bf4e55243ec741bfb6531992d30df59048 100644
--- a/Source/core/frame/Frame.cpp
+++ b/Source/core/frame/Frame.cpp
@@ -65,6 +65,7 @@
#include "core/svg/SVGDocument.h"
#include "platform/graphics/GraphicsContext.h"
#include "platform/graphics/ImageBuffer.h"
+#include "public/platform/WebLayer.h"
#include "wtf/PassOwnPtr.h"
#include "wtf/RefCountedLeakCounter.h"
#include "wtf/StdLibExtras.h"
@@ -119,6 +120,7 @@ inline Frame::Frame(PassRefPtr<FrameInit> frameInit)
, m_orientation(0)
#endif
, m_inViewSourceMode(false)
+ , m_platformLayer(0)
{
ASSERT(m_page);

Powered by Google App Engine
This is Rietveld 408576698