| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "config.h" | 5 #include "config.h" |
| 6 #include "core/paint/DeprecatedPaintLayerPainter.h" | 6 #include "core/paint/DeprecatedPaintLayerPainter.h" |
| 7 | 7 |
| 8 #include "core/frame/Settings.h" | 8 #include "core/frame/Settings.h" |
| 9 #include "core/layout/ClipPathOperation.h" | 9 #include "core/layout/ClipPathOperation.h" |
| 10 #include "core/layout/FilterEffectRenderer.h" | |
| 11 #include "core/layout/LayoutBlock.h" | 10 #include "core/layout/LayoutBlock.h" |
| 12 #include "core/layout/LayoutView.h" | 11 #include "core/layout/LayoutView.h" |
| 13 #include "core/layout/PaintInfo.h" | 12 #include "core/layout/PaintInfo.h" |
| 14 #include "core/layout/svg/LayoutSVGResourceClipper.h" | 13 #include "core/layout/svg/LayoutSVGResourceClipper.h" |
| 15 #include "core/page/Page.h" | 14 #include "core/page/Page.h" |
| 16 #include "core/paint/CompositingRecorder.h" | 15 #include "core/paint/CompositingRecorder.h" |
| 17 #include "core/paint/DeprecatedPaintLayer.h" | 16 #include "core/paint/DeprecatedPaintLayer.h" |
| 18 #include "core/paint/FilterPainter.h" | 17 #include "core/paint/FilterPainter.h" |
| 19 #include "core/paint/LayerClipRecorder.h" | 18 #include "core/paint/LayerClipRecorder.h" |
| 20 #include "core/paint/SVGClipPainter.h" | 19 #include "core/paint/SVGClipPainter.h" |
| (...skipping 703 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 724 if (!m_paintLayer.containsDirtyOverlayScrollbars()) | 723 if (!m_paintLayer.containsDirtyOverlayScrollbars()) |
| 725 return; | 724 return; |
| 726 | 725 |
| 727 DeprecatedPaintLayerPaintingInfo paintingInfo(&m_paintLayer, LayoutRect(encl
osingIntRect(damageRect)), paintBehavior, LayoutSize(), paintingRoot); | 726 DeprecatedPaintLayerPaintingInfo paintingInfo(&m_paintLayer, LayoutRect(encl
osingIntRect(damageRect)), paintBehavior, LayoutSize(), paintingRoot); |
| 728 paintLayer(context, paintingInfo, PaintLayerPaintingOverlayScrollbars); | 727 paintLayer(context, paintingInfo, PaintLayerPaintingOverlayScrollbars); |
| 729 | 728 |
| 730 m_paintLayer.setContainsDirtyOverlayScrollbars(false); | 729 m_paintLayer.setContainsDirtyOverlayScrollbars(false); |
| 731 } | 730 } |
| 732 | 731 |
| 733 } // namespace blink | 732 } // namespace blink |
| OLD | NEW |