| Index: third_party/WebKit/Source/core/paint/PaintLayer.cpp
|
| diff --git a/third_party/WebKit/Source/core/paint/PaintLayer.cpp b/third_party/WebKit/Source/core/paint/PaintLayer.cpp
|
| index 8934d817ae5842737cc219258a1933eb78162190..aabe1c5f5f715dabeeb6687319411f2a189aab07 100644
|
| --- a/third_party/WebKit/Source/core/paint/PaintLayer.cpp
|
| +++ b/third_party/WebKit/Source/core/paint/PaintLayer.cpp
|
| @@ -95,7 +95,7 @@
|
|
|
| struct SameSizeAsPaintLayer : DisplayItemClient {
|
| int bitFields;
|
| - void* pointers[10];
|
| + void* pointers[11];
|
| LayoutUnit layoutUnits[4];
|
| IntSize size;
|
| Persistent<PaintLayerScrollableArea> scrollableArea;
|
| @@ -104,7 +104,6 @@
|
| void* pointer;
|
| LayoutRect rect;
|
| } previousPaintStatus;
|
| - ClipRects previousClipRects;
|
| };
|
|
|
| static_assert(sizeof(PaintLayer) == sizeof(SameSizeAsPaintLayer),
|
| @@ -157,7 +156,6 @@
|
| m_hasNonIsolatedDescendantWithBlendMode(false),
|
| m_hasAncestorWithClipPath(false),
|
| m_selfPaintingStatusChanged(false),
|
| - m_hasPreviousPaintingClipRects(false),
|
| m_layoutObject(layoutObject),
|
| m_parent(0),
|
| m_previous(0),
|
|
|