| 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 FloatClipRecorder_h | 5 #ifndef FloatClipRecorder_h |
| 6 #define FloatClipRecorder_h | 6 #define FloatClipRecorder_h |
| 7 | 7 |
| 8 #include "core/paint/PaintPhase.h" | 8 #include "core/paint/PaintPhase.h" |
| 9 #include "platform/geometry/FloatRect.h" | 9 #include "platform/geometry/FloatRect.h" |
| 10 #include "platform/graphics/paint/DisplayItem.h" | 10 #include "platform/graphics/paint/DisplayItem.h" |
| 11 #include "wtf/Allocator.h" | 11 #include "wtf/Allocator.h" |
| 12 #include "wtf/Noncopyable.h" | 12 #include "wtf/Noncopyable.h" |
| 13 | 13 |
| 14 namespace blink { | 14 namespace blink { |
| 15 | 15 |
| 16 class FloatClipRecorder { | 16 class FloatClipRecorder { |
| 17 USING_FAST_MALLOC(FloatClipRecorder); | 17 USING_FAST_MALLOC(FloatClipRecorder); |
| 18 WTF_MAKE_NONCOPYABLE(FloatClipRecorder); | 18 WTF_MAKE_NONCOPYABLE(FloatClipRecorder); |
| 19 public: | 19 public: |
| 20 FloatClipRecorder(GraphicsContext&, const DisplayItemClientWrapper&, PaintPh
ase, const FloatRect&); | 20 FloatClipRecorder(GraphicsContext&, const DisplayItemClient&, PaintPhase, co
nst FloatRect&); |
| 21 | 21 |
| 22 ~FloatClipRecorder(); | 22 ~FloatClipRecorder(); |
| 23 | 23 |
| 24 private: | 24 private: |
| 25 GraphicsContext& m_context; | 25 GraphicsContext& m_context; |
| 26 DisplayItemClientWrapper m_client; | 26 const DisplayItemClient& m_client; |
| 27 DisplayItem::Type m_clipType; | 27 DisplayItem::Type m_clipType; |
| 28 }; | 28 }; |
| 29 | 29 |
| 30 } // namespace blink | 30 } // namespace blink |
| 31 | 31 |
| 32 #endif // FloatClipRecorder_h | 32 #endif // FloatClipRecorder_h |
| OLD | NEW |