| 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 #ifndef PaintLayerPainter_h | 5 #ifndef PaintLayerPainter_h |
| 6 #define PaintLayerPainter_h | 6 #define PaintLayerPainter_h |
| 7 | 7 |
| 8 #include "core/CoreExport.h" | 8 #include "core/CoreExport.h" |
| 9 #include "core/paint/PaintLayerFragment.h" | 9 #include "core/paint/PaintLayerFragment.h" |
| 10 #include "core/paint/PaintLayerPaintingInfo.h" | 10 #include "core/paint/PaintLayerPaintingInfo.h" |
| 11 #include "core/paint/PaintResult.h" | 11 #include "core/paint/PaintResult.h" |
| 12 #include "wtf/Allocator.h" | 12 #include "platform/wtf/Allocator.h" |
| 13 | 13 |
| 14 namespace blink { | 14 namespace blink { |
| 15 | 15 |
| 16 class ClipRect; | 16 class ClipRect; |
| 17 class PaintLayer; | 17 class PaintLayer; |
| 18 class GraphicsContext; | 18 class GraphicsContext; |
| 19 class LayoutPoint; | 19 class LayoutPoint; |
| 20 | 20 |
| 21 // This class is responsible for painting self-painting PaintLayer. | 21 // This class is responsible for painting self-painting PaintLayer. |
| 22 // | 22 // |
| (...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 158 FRIEND_TEST_ALL_PREFIXES(PaintLayerPainterTest, DoPaintWithNonTinyOpacity); | 158 FRIEND_TEST_ALL_PREFIXES(PaintLayerPainterTest, DoPaintWithNonTinyOpacity); |
| 159 FRIEND_TEST_ALL_PREFIXES(PaintLayerPainterTest, | 159 FRIEND_TEST_ALL_PREFIXES(PaintLayerPainterTest, |
| 160 DoPaintWithEffectAnimationZeroOpacity); | 160 DoPaintWithEffectAnimationZeroOpacity); |
| 161 FRIEND_TEST_ALL_PREFIXES(PaintLayerPainterTest, | 161 FRIEND_TEST_ALL_PREFIXES(PaintLayerPainterTest, |
| 162 DoNotPaintWithTransformAnimationZeroOpacity); | 162 DoNotPaintWithTransformAnimationZeroOpacity); |
| 163 }; | 163 }; |
| 164 | 164 |
| 165 } // namespace blink | 165 } // namespace blink |
| 166 | 166 |
| 167 #endif // PaintLayerPainter_h | 167 #endif // PaintLayerPainter_h |
| OLD | NEW |