| 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 FloatClipDisplayItem_h | 5 #ifndef FloatClipDisplayItem_h |
| 6 #define FloatClipDisplayItem_h | 6 #define FloatClipDisplayItem_h |
| 7 | 7 |
| 8 #include "platform/PlatformExport.h" | 8 #include "platform/PlatformExport.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" |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 ASSERT(isFloatClipType(type)); | 22 ASSERT(isFloatClipType(type)); |
| 23 } | 23 } |
| 24 | 24 |
| 25 void replay(GraphicsContext&) const override; | 25 void replay(GraphicsContext&) const override; |
| 26 void appendToWebDisplayItemList(const IntRect&, WebDisplayItemList*) const o
verride; | 26 void appendToWebDisplayItemList(const IntRect&, WebDisplayItemList*) const o
verride; |
| 27 | 27 |
| 28 private: | 28 private: |
| 29 #ifndef NDEBUG | 29 #ifndef NDEBUG |
| 30 void dumpPropertiesAsDebugString(WTF::StringBuilder&) const override; | 30 void dumpPropertiesAsDebugString(WTF::StringBuilder&) const override; |
| 31 #endif | 31 #endif |
| 32 #if ENABLE(ASSERT) | |
| 33 bool equals(const DisplayItem& other) const final | 32 bool equals(const DisplayItem& other) const final |
| 34 { | 33 { |
| 35 return DisplayItem::equals(other) | 34 return DisplayItem::equals(other) |
| 36 && m_clipRect == static_cast<const FloatClipDisplayItem&>(other).m_c
lipRect; | 35 && m_clipRect == static_cast<const FloatClipDisplayItem&>(other).m_c
lipRect; |
| 37 } | 36 } |
| 38 #endif | |
| 39 | 37 |
| 40 const FloatRect m_clipRect; | 38 const FloatRect m_clipRect; |
| 41 }; | 39 }; |
| 42 | 40 |
| 43 class PLATFORM_EXPORT EndFloatClipDisplayItem final : public PairedEndDisplayIte
m { | 41 class PLATFORM_EXPORT EndFloatClipDisplayItem final : public PairedEndDisplayIte
m { |
| 44 public: | 42 public: |
| 45 EndFloatClipDisplayItem(const DisplayItemClient& client, Type type) | 43 EndFloatClipDisplayItem(const DisplayItemClient& client, Type type) |
| 46 : PairedEndDisplayItem(client, type, sizeof(*this)) | 44 : PairedEndDisplayItem(client, type, sizeof(*this)) |
| 47 { | 45 { |
| 48 ASSERT(isEndFloatClipType(type)); | 46 ASSERT(isEndFloatClipType(type)); |
| 49 } | 47 } |
| 50 | 48 |
| 51 void replay(GraphicsContext&) const override; | 49 void replay(GraphicsContext&) const override; |
| 52 void appendToWebDisplayItemList(const IntRect&, WebDisplayItemList*) const o
verride; | 50 void appendToWebDisplayItemList(const IntRect&, WebDisplayItemList*) const o
verride; |
| 53 | 51 |
| 54 private: | 52 private: |
| 55 #if ENABLE(ASSERT) | 53 #if ENABLE(ASSERT) |
| 56 bool isEndAndPairedWith(DisplayItem::Type otherType) const final { return Di
splayItem::isFloatClipType(otherType); } | 54 bool isEndAndPairedWith(DisplayItem::Type otherType) const final { return Di
splayItem::isFloatClipType(otherType); } |
| 57 #endif | 55 #endif |
| 58 }; | 56 }; |
| 59 | 57 |
| 60 } // namespace blink | 58 } // namespace blink |
| 61 | 59 |
| 62 #endif // FloatClipDisplayItem_h | 60 #endif // FloatClipDisplayItem_h |
| OLD | NEW |