| OLD | NEW |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 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 RarePaintData_h | 5 #ifndef RarePaintData_h |
| 6 #define RarePaintData_h | 6 #define RarePaintData_h |
| 7 | 7 |
| 8 #include "core/CoreExport.h" | 8 #include "core/CoreExport.h" |
| 9 #include "wtf/Allocator.h" | 9 #include "platform/wtf/Allocator.h" |
| 10 #include "wtf/Noncopyable.h" | 10 #include "platform/wtf/Noncopyable.h" |
| 11 | 11 |
| 12 namespace blink { | 12 namespace blink { |
| 13 | 13 |
| 14 class PropertyTreeState; | 14 class PropertyTreeState; |
| 15 class ObjectPaintProperties; | 15 class ObjectPaintProperties; |
| 16 class PaintLayer; | 16 class PaintLayer; |
| 17 | 17 |
| 18 // This is for paint-related data on LayoutObject that is not needed on all | 18 // This is for paint-related data on LayoutObject that is not needed on all |
| 19 // objects. | 19 // objects. |
| 20 class CORE_EXPORT RarePaintData { | 20 class CORE_EXPORT RarePaintData { |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 // The div's local border box properties would have an opacity 0.3 effect | 63 // The div's local border box properties would have an opacity 0.3 effect |
| 64 // node. Even though the div has no transform, its local border box | 64 // node. Even though the div has no transform, its local border box |
| 65 // properties would have a transform node that points to the div's | 65 // properties would have a transform node that points to the div's |
| 66 // ancestor transform space. | 66 // ancestor transform space. |
| 67 std::unique_ptr<PropertyTreeState> local_border_box_properties_; | 67 std::unique_ptr<PropertyTreeState> local_border_box_properties_; |
| 68 }; | 68 }; |
| 69 | 69 |
| 70 } // namespace blink | 70 } // namespace blink |
| 71 | 71 |
| 72 #endif | 72 #endif |
| OLD | NEW |