Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(275)

Side by Side Diff: third_party/WebKit/Source/platform/graphics/paint/FloatClipDisplayItem.h

Issue 2309193002: Revert of Reland Compile under-invalidation checking in all builds (Closed)
Patch Set: Rebase and manually fix merge conflicts. Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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)
32 bool equals(const DisplayItem& other) const final 33 bool equals(const DisplayItem& other) const final
33 { 34 {
34 return DisplayItem::equals(other) 35 return DisplayItem::equals(other)
35 && m_clipRect == static_cast<const FloatClipDisplayItem&>(other).m_c lipRect; 36 && m_clipRect == static_cast<const FloatClipDisplayItem&>(other).m_c lipRect;
36 } 37 }
38 #endif
37 39
38 const FloatRect m_clipRect; 40 const FloatRect m_clipRect;
39 }; 41 };
40 42
41 class PLATFORM_EXPORT EndFloatClipDisplayItem final : public PairedEndDisplayIte m { 43 class PLATFORM_EXPORT EndFloatClipDisplayItem final : public PairedEndDisplayIte m {
42 public: 44 public:
43 EndFloatClipDisplayItem(const DisplayItemClient& client, Type type) 45 EndFloatClipDisplayItem(const DisplayItemClient& client, Type type)
44 : PairedEndDisplayItem(client, type, sizeof(*this)) 46 : PairedEndDisplayItem(client, type, sizeof(*this))
45 { 47 {
46 ASSERT(isEndFloatClipType(type)); 48 ASSERT(isEndFloatClipType(type));
47 } 49 }
48 50
49 void replay(GraphicsContext&) const override; 51 void replay(GraphicsContext&) const override;
50 void appendToWebDisplayItemList(const IntRect&, WebDisplayItemList*) const o verride; 52 void appendToWebDisplayItemList(const IntRect&, WebDisplayItemList*) const o verride;
51 53
52 private: 54 private:
53 #if ENABLE(ASSERT) 55 #if ENABLE(ASSERT)
54 bool isEndAndPairedWith(DisplayItem::Type otherType) const final { return Di splayItem::isFloatClipType(otherType); } 56 bool isEndAndPairedWith(DisplayItem::Type otherType) const final { return Di splayItem::isFloatClipType(otherType); }
55 #endif 57 #endif
56 }; 58 };
57 59
58 } // namespace blink 60 } // namespace blink
59 61
60 #endif // FloatClipDisplayItem_h 62 #endif // FloatClipDisplayItem_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698