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

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

Issue 2119033003: Fix alignment issue of ContiguousContainer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 5 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 TransformDisplayItem_h 5 #ifndef TransformDisplayItem_h
6 #define TransformDisplayItem_h 6 #define TransformDisplayItem_h
7 7
8 #include "platform/graphics/paint/DisplayItem.h" 8 #include "platform/graphics/paint/DisplayItem.h"
9 #include "platform/transforms/AffineTransform.h" 9 #include "platform/transforms/AffineTransform.h"
10 10
11 namespace blink { 11 namespace blink {
12 12
13 class PLATFORM_EXPORT BeginTransformDisplayItem final : public PairedBeginDispla yItem { 13 class PLATFORM_EXPORT BeginTransformDisplayItem final : public PairedBeginDispla yItem<BeginTransformDisplayItem> {
14 public: 14 public:
15 BeginTransformDisplayItem(const DisplayItemClient& client, const AffineTrans form& transform) 15 BeginTransformDisplayItem(const DisplayItemClient& client, const AffineTrans form& transform)
16 : PairedBeginDisplayItem(client, BeginTransform, sizeof(*this)) 16 : PairedBeginDisplayItem(client, BeginTransform)
17 , m_transform(transform) { } 17 , m_transform(transform) { }
18 18
19 void replay(GraphicsContext&) const override; 19 void replay(GraphicsContext&) const override;
20 void appendToWebDisplayItemList(const IntRect&, WebDisplayItemList*) const o verride; 20 void appendToWebDisplayItemList(const IntRect&, WebDisplayItemList*) const o verride;
21 21
22 const AffineTransform& transform() const { return m_transform; } 22 const AffineTransform& transform() const { return m_transform; }
23 23
24 private: 24 private:
25 #ifndef NDEBUG 25 #ifndef NDEBUG
26 void dumpPropertiesAsDebugString(WTF::StringBuilder&) const final; 26 void dumpPropertiesAsDebugString(WTF::StringBuilder&) const final;
27 #endif 27 #endif
28 #if ENABLE(ASSERT) 28 #if ENABLE(ASSERT)
29 bool equals(const DisplayItem& other) const final 29 bool equals(const DisplayItem& other) const final
30 { 30 {
31 return DisplayItem::equals(other) 31 return DisplayItem::equals(other)
32 && m_transform == static_cast<const BeginTransformDisplayItem&>(othe r).m_transform; 32 && m_transform == static_cast<const BeginTransformDisplayItem&>(othe r).m_transform;
33 } 33 }
34 #endif 34 #endif
35 35
36 const AffineTransform m_transform; 36 const AffineTransform m_transform;
37 }; 37 };
38 38
39 class PLATFORM_EXPORT EndTransformDisplayItem final : public PairedEndDisplayIte m { 39 class PLATFORM_EXPORT EndTransformDisplayItem final : public PairedEndDisplayIte m<EndTransformDisplayItem> {
40 public: 40 public:
41 EndTransformDisplayItem(const DisplayItemClient& client) 41 EndTransformDisplayItem(const DisplayItemClient& client)
42 : PairedEndDisplayItem(client, EndTransform, sizeof(*this)) { } 42 : PairedEndDisplayItem(client, EndTransform) { }
43 43
44 void replay(GraphicsContext&) const override; 44 void replay(GraphicsContext&) const override;
45 void appendToWebDisplayItemList(const IntRect&, WebDisplayItemList*) const o verride; 45 void appendToWebDisplayItemList(const IntRect&, WebDisplayItemList*) const o verride;
46 46
47 private: 47 private:
48 #if ENABLE(ASSERT) 48 #if ENABLE(ASSERT)
49 bool isEndAndPairedWith(DisplayItem::Type otherType) const final { return ot herType == BeginTransform; } 49 bool isEndAndPairedWith(DisplayItem::Type otherType) const final { return ot herType == BeginTransform; }
50 #endif 50 #endif
51 }; 51 };
52 52
53 } // namespace blink 53 } // namespace blink
54 54
55 #endif // TransformDisplayItem_h 55 #endif // TransformDisplayItem_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698