| 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 BackgroundImageGeometry_h | 5 #ifndef BackgroundImageGeometry_h |
| 6 #define BackgroundImageGeometry_h | 6 #define BackgroundImageGeometry_h |
| 7 | 7 |
| 8 #include "core/paint/PaintPhase.h" | 8 #include "core/paint/PaintPhase.h" |
| 9 #include "platform/geometry/LayoutPoint.h" | 9 #include "platform/geometry/LayoutPoint.h" |
| 10 #include "platform/geometry/LayoutRect.h" | 10 #include "platform/geometry/LayoutRect.h" |
| 11 #include "platform/geometry/LayoutSize.h" | 11 #include "platform/geometry/LayoutSize.h" |
| 12 #include "wtf/Allocator.h" | 12 #include "platform/wtf/Allocator.h" |
| 13 | 13 |
| 14 namespace blink { | 14 namespace blink { |
| 15 | 15 |
| 16 class FillLayer; | 16 class FillLayer; |
| 17 class LayoutBox; | 17 class LayoutBox; |
| 18 class LayoutBoxModelObject; | 18 class LayoutBoxModelObject; |
| 19 class LayoutObject; | 19 class LayoutObject; |
| 20 class LayoutRect; | 20 class LayoutRect; |
| 21 class LayoutTableCell; | 21 class LayoutTableCell; |
| 22 | 22 |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 LayoutRect dest_rect_; | 91 LayoutRect dest_rect_; |
| 92 LayoutPoint phase_; | 92 LayoutPoint phase_; |
| 93 LayoutSize tile_size_; | 93 LayoutSize tile_size_; |
| 94 LayoutSize repeat_spacing_; | 94 LayoutSize repeat_spacing_; |
| 95 bool has_non_local_geometry_; | 95 bool has_non_local_geometry_; |
| 96 }; | 96 }; |
| 97 | 97 |
| 98 } // namespace blink | 98 } // namespace blink |
| 99 | 99 |
| 100 #endif // BackgroundImageGeometry_h | 100 #endif // BackgroundImageGeometry_h |
| OLD | NEW |