Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(73)

Side by Side Diff: third_party/WebKit/Source/core/paint/PaintLayerPainter.cpp

Issue 2474603002: Don't include LayoutObject-derived headers where not needed. (Closed)
Patch Set: Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698