| 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 "core/paint/PaintLayerPainter.h" | 5 #include "core/paint/PaintLayerPainter.h" |
| 6 | 6 |
| 7 #include "core/frame/LocalFrame.h" | 7 #include "core/frame/LocalFrame.h" |
| 8 #include "core/layout/LayoutInline.h" | |
| 9 #include "core/layout/LayoutView.h" | 8 #include "core/layout/LayoutView.h" |
| 10 #include "core/paint/ClipPathClipper.h" | 9 #include "core/paint/ClipPathClipper.h" |
| 11 #include "core/paint/FilterPainter.h" | 10 #include "core/paint/FilterPainter.h" |
| 12 #include "core/paint/LayerClipRecorder.h" | 11 #include "core/paint/LayerClipRecorder.h" |
| 13 #include "core/paint/ObjectPaintProperties.h" | 12 #include "core/paint/ObjectPaintProperties.h" |
| 14 #include "core/paint/PaintInfo.h" | 13 #include "core/paint/PaintInfo.h" |
| 15 #include "core/paint/PaintLayer.h" | 14 #include "core/paint/PaintLayer.h" |
| 16 #include "core/paint/ScrollRecorder.h" | 15 #include "core/paint/ScrollRecorder.h" |
| 17 #include "core/paint/ScrollableAreaPainter.h" | 16 #include "core/paint/ScrollableAreaPainter.h" |
| 18 #include "core/paint/Transform3DRecorder.h" | 17 #include "core/paint/Transform3DRecorder.h" |
| (...skipping 1052 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1071 | 1070 |
| 1072 PaintLayerPaintingInfo paintingInfo(&m_paintLayer, | 1071 PaintLayerPaintingInfo paintingInfo(&m_paintLayer, |
| 1073 LayoutRect(enclosingIntRect(damageRect)), | 1072 LayoutRect(enclosingIntRect(damageRect)), |
| 1074 paintFlags, LayoutSize()); | 1073 paintFlags, LayoutSize()); |
| 1075 paintLayer(context, paintingInfo, PaintLayerPaintingOverlayScrollbars); | 1074 paintLayer(context, paintingInfo, PaintLayerPaintingOverlayScrollbars); |
| 1076 | 1075 |
| 1077 m_paintLayer.setContainsDirtyOverlayScrollbars(false); | 1076 m_paintLayer.setContainsDirtyOverlayScrollbars(false); |
| 1078 } | 1077 } |
| 1079 | 1078 |
| 1080 } // namespace blink | 1079 } // namespace blink |
| OLD | NEW |