| 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 ObjectPainter_h | 5 #ifndef ObjectPainter_h |
| 6 #define ObjectPainter_h | 6 #define ObjectPainter_h |
| 7 | 7 |
| 8 #include "core/style/ComputedStyleConstants.h" | 8 #include "core/style/ComputedStyleConstants.h" |
| 9 #include "platform/RuntimeEnabledFeatures.h" | 9 #include "platform/RuntimeEnabledFeatures.h" |
| 10 #include "wtf/Allocator.h" | 10 #include "platform/wtf/Allocator.h" |
| 11 #include "wtf/Vector.h" | 11 #include "platform/wtf/Vector.h" |
| 12 | 12 |
| 13 namespace blink { | 13 namespace blink { |
| 14 | 14 |
| 15 class Color; | 15 class Color; |
| 16 class GraphicsContext; | 16 class GraphicsContext; |
| 17 class LayoutPoint; | 17 class LayoutPoint; |
| 18 struct PaintInfo; | 18 struct PaintInfo; |
| 19 class LayoutObject; | 19 class LayoutObject; |
| 20 | 20 |
| 21 class ObjectPainter { | 21 class ObjectPainter { |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 #if DCHECK_IS_ON() | 123 #if DCHECK_IS_ON() |
| 124 void DoCheckPaintOffset(const PaintInfo&, const LayoutPoint& paint_offset); | 124 void DoCheckPaintOffset(const PaintInfo&, const LayoutPoint& paint_offset); |
| 125 #endif | 125 #endif |
| 126 | 126 |
| 127 const LayoutObject& layout_object_; | 127 const LayoutObject& layout_object_; |
| 128 }; | 128 }; |
| 129 | 129 |
| 130 } // namespace blink | 130 } // namespace blink |
| 131 | 131 |
| 132 #endif | 132 #endif |
| OLD | NEW |