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

Side by Side Diff: Source/core/paint/DeprecatedPaintLayerPainter.cpp

Issue 1092673002: Move FilterEffectRenderer to core/paint/ (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase. Created 5 years, 8 months 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 | Annotate | Revision Log
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 "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
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
OLDNEW
« no previous file with comments | « Source/core/paint/DeprecatedPaintLayerFilterInfo.cpp ('k') | Source/core/paint/FilterEffectBuilder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698