| Index: Source/core/paint/ViewPainter.cpp
|
| diff --git a/Source/core/paint/ViewPainter.cpp b/Source/core/paint/ViewPainter.cpp
|
| index 73a5ff58788ab9f1d8d2bdd6df756ea86a46eb1d..63e19a5021ef6bff5dc723919e232cf5ae1a4717 100644
|
| --- a/Source/core/paint/ViewPainter.cpp
|
| +++ b/Source/core/paint/ViewPainter.cpp
|
| @@ -9,7 +9,6 @@
|
| #include "core/layout/LayoutBox.h"
|
| #include "core/layout/LayoutView.h"
|
| #include "core/paint/BlockPainter.h"
|
| -#include "core/paint/GraphicsContextAnnotator.h"
|
| #include "core/paint/LayoutObjectDrawingRecorder.h"
|
| #include "core/paint/PaintInfo.h"
|
| #include "platform/RuntimeEnabledFeatures.h"
|
| @@ -23,8 +22,6 @@ void ViewPainter::paint(const PaintInfo& paintInfo, const LayoutPoint& paintOffs
|
| // LayoutViews should never be called to paint with an offset not on device pixels.
|
| ASSERT(LayoutPoint(IntPoint(paintOffset.x(), paintOffset.y())) == paintOffset);
|
|
|
| - ANNOTATE_GRAPHICS_CONTEXT(paintInfo, &m_layoutView);
|
| -
|
| // This avoids painting garbage between columns if there is a column gap.
|
| // This is legacy WebKit behavior and doesn't work with slimmingpaint. We can remove it once region-based columns are launched.
|
| if (!RuntimeEnabledFeatures::regionBasedColumnsEnabled() && m_layoutView.frameView() && m_layoutView.style()->isOverflowPaged()) {
|
|
|