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

Unified Diff: third_party/WebKit/Source/platform/graphics/paint/TransformPaintPropertyNode.cpp

Issue 2608543002: Store compositor element id in paint properties for animated objects. (Closed)
Patch Set: Hide create-dom-node method. Created 3 years, 12 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/WebKit/Source/platform/graphics/paint/TransformPaintPropertyNode.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/platform/graphics/paint/TransformPaintPropertyNode.cpp
diff --git a/third_party/WebKit/Source/platform/graphics/paint/TransformPaintPropertyNode.cpp b/third_party/WebKit/Source/platform/graphics/paint/TransformPaintPropertyNode.cpp
index e7162129f89f9d76e9956b10cc3b45d3fc33f5b0..70cbe4c0154b5391e9ff77032e88dcbb18bf8927 100644
--- a/third_party/WebKit/Source/platform/graphics/paint/TransformPaintPropertyNode.cpp
+++ b/third_party/WebKit/Source/platform/graphics/paint/TransformPaintPropertyNode.cpp
@@ -16,11 +16,14 @@ TransformPaintPropertyNode* TransformPaintPropertyNode::root() {
String TransformPaintPropertyNode::toString() const {
return String::format(
"parent=%p transform=%s origin=%s flattensInheritedTransform=%s "
- "renderContextID=%x directCompositingReasons=%s",
+ "renderingContextId=%x directCompositingReasons=%s "
+ "compositorElementId=(%d, "
+ "%d)",
m_parent.get(), m_matrix.toString().ascii().data(),
m_origin.toString().ascii().data(),
m_flattensInheritedTransform ? "yes" : "no", m_renderingContextId,
- compositingReasonsAsString(m_directCompositingReasons).ascii().data());
+ compositingReasonsAsString(m_directCompositingReasons).ascii().data(),
+ m_compositorElementId.primaryId, m_compositorElementId.secondaryId);
}
} // namespace blink
« no previous file with comments | « third_party/WebKit/Source/platform/graphics/paint/TransformPaintPropertyNode.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698