| 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 PaintInvalidationState_h | 5 #ifndef PaintInvalidationState_h |
| 6 #define PaintInvalidationState_h | 6 #define PaintInvalidationState_h |
| 7 | 7 |
| 8 #include "platform/geometry/LayoutRect.h" | 8 #include "platform/geometry/LayoutRect.h" |
| 9 #include "platform/transforms/AffineTransform.h" | 9 #include "platform/transforms/AffineTransform.h" |
| 10 #include "wtf/Noncopyable.h" | 10 #include "wtf/Noncopyable.h" |
| 11 | 11 |
| 12 namespace blink { | 12 namespace blink { |
| 13 | 13 |
| 14 class LayoutLayerModelObject; | 14 class LayoutLayerModelObject; |
| 15 class LayoutObject; | 15 class LayoutObject; |
| 16 class RenderSVGModelObject; | 16 class LayoutSVGModelObject; |
| 17 class RenderView; | 17 class RenderView; |
| 18 | 18 |
| 19 class PaintInvalidationState { | 19 class PaintInvalidationState { |
| 20 WTF_MAKE_NONCOPYABLE(PaintInvalidationState); | 20 WTF_MAKE_NONCOPYABLE(PaintInvalidationState); |
| 21 public: | 21 public: |
| 22 PaintInvalidationState(const PaintInvalidationState& next, LayoutLayerModelO
bject& renderer, const LayoutLayerModelObject& paintInvalidationContainer); | 22 PaintInvalidationState(const PaintInvalidationState& next, LayoutLayerModelO
bject& renderer, const LayoutLayerModelObject& paintInvalidationContainer); |
| 23 PaintInvalidationState(const PaintInvalidationState& next, const RenderSVGMo
delObject& renderer); | 23 PaintInvalidationState(const PaintInvalidationState& next, const LayoutSVGMo
delObject& renderer); |
| 24 | 24 |
| 25 explicit PaintInvalidationState(const RenderView&); | 25 explicit PaintInvalidationState(const RenderView&); |
| 26 | 26 |
| 27 const LayoutRect& clipRect() const { return m_clipRect; } | 27 const LayoutRect& clipRect() const { return m_clipRect; } |
| 28 const LayoutSize& paintOffset() const { return m_paintOffset; } | 28 const LayoutSize& paintOffset() const { return m_paintOffset; } |
| 29 const AffineTransform& svgTransform() const { ASSERT(m_svgTransform); return
*m_svgTransform; } | 29 const AffineTransform& svgTransform() const { ASSERT(m_svgTransform); return
*m_svgTransform; } |
| 30 | 30 |
| 31 bool cachedOffsetsEnabled() const { return m_cachedOffsetsEnabled; } | 31 bool cachedOffsetsEnabled() const { return m_cachedOffsetsEnabled; } |
| 32 bool isClipped() const { return m_clipped; } | 32 bool isClipped() const { return m_clipped; } |
| 33 | 33 |
| (...skipping 25 matching lines...) Expand all Loading... |
| 59 | 59 |
| 60 // Transform from the initial viewport coordinate system of an outermost | 60 // Transform from the initial viewport coordinate system of an outermost |
| 61 // SVG root to the userspace _before_ the relevant element. Combining this | 61 // SVG root to the userspace _before_ the relevant element. Combining this |
| 62 // with |m_paintOffset| yields the "final" offset. | 62 // with |m_paintOffset| yields the "final" offset. |
| 63 OwnPtr<AffineTransform> m_svgTransform; | 63 OwnPtr<AffineTransform> m_svgTransform; |
| 64 }; | 64 }; |
| 65 | 65 |
| 66 } // namespace blink | 66 } // namespace blink |
| 67 | 67 |
| 68 #endif // PaintInvalidationState_h | 68 #endif // PaintInvalidationState_h |
| OLD | NEW |