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

Unified Diff: third_party/WebKit/Source/platform/graphics/paint/ClipPaintPropertyNode.h

Issue 2606863002: Complete XXXPaintPropertyNode::operator== and toString() (Closed)
Patch Set: - Created 4 years 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/platform/graphics/paint/ClipPaintPropertyNode.h
diff --git a/third_party/WebKit/Source/platform/graphics/paint/ClipPaintPropertyNode.h b/third_party/WebKit/Source/platform/graphics/paint/ClipPaintPropertyNode.h
index 80ec78512f99d66e0b5eeca8236732157745920f..8e0667b32cb1d8c6975284152d42b50ef5a7c601 100644
--- a/third_party/WebKit/Source/platform/graphics/paint/ClipPaintPropertyNode.h
+++ b/third_party/WebKit/Source/platform/graphics/paint/ClipPaintPropertyNode.h
@@ -71,7 +71,8 @@ class PLATFORM_EXPORT ClipPaintPropertyNode
bool operator==(const ClipPaintPropertyNode& o) const {
return m_parent == o.m_parent &&
m_localTransformSpace == o.m_localTransformSpace &&
- m_clipRect == o.m_clipRect;
+ m_clipRect == o.m_clipRect &&
+ m_directCompositingReasons == o.m_directCompositingReasons;
}
#endif

Powered by Google App Engine
This is Rietveld 408576698