Index: third_party/WebKit/Source/platform/graphics/paint/DrawingRecorder.cpp |
diff --git a/third_party/WebKit/Source/platform/graphics/paint/DrawingRecorder.cpp b/third_party/WebKit/Source/platform/graphics/paint/DrawingRecorder.cpp |
index cb396f6723423a9d044ae42d07cbd58526842ef9..41ad7904eb094a25cc905f379632aa8d267ffe26 100644 |
--- a/third_party/WebKit/Source/platform/graphics/paint/DrawingRecorder.cpp |
+++ b/third_party/WebKit/Source/platform/graphics/paint/DrawingRecorder.cpp |
@@ -36,6 +36,7 @@ DrawingRecorder::DrawingRecorder(GraphicsContext& context, const DisplayItemClie |
: m_context(context) |
, m_displayItemClient(displayItemClient) |
, m_displayItemType(displayItemType) |
+ , m_knownToBeOpaque(false) |
#if ENABLE(ASSERT) |
, m_displayItemPosition(m_context.paintController().newDisplayItemList().size()) |
, m_underInvalidationCheckingMode(DrawingDisplayItem::CheckPicture) |
@@ -90,6 +91,7 @@ DrawingRecorder::~DrawingRecorder() |
m_context.paintController().createAndAppend<DrawingDisplayItem>(m_displayItemClient |
, m_displayItemType |
, m_context.endRecording() |
+ , m_knownToBeOpaque |
#if ENABLE(ASSERT) |
, m_underInvalidationCheckingMode |
#endif |