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

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

Issue 2594083002: Output more information in paint property node 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/platform/graphics/paint/ScrollPaintPropertyNode.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/platform/graphics/paint/EffectPaintPropertyNode.cpp
diff --git a/third_party/WebKit/Source/platform/graphics/paint/EffectPaintPropertyNode.cpp b/third_party/WebKit/Source/platform/graphics/paint/EffectPaintPropertyNode.cpp
index 382151de9db81a997d7aab4cb12fc63cc1995680..4c5c8c8b883172bdc76a57973409723e002dd7e0 100644
--- a/third_party/WebKit/Source/platform/graphics/paint/EffectPaintPropertyNode.cpp
+++ b/third_party/WebKit/Source/platform/graphics/paint/EffectPaintPropertyNode.cpp
@@ -25,9 +25,9 @@ cc::Layer* EffectPaintPropertyNode::ensureDummyLayer() const {
String EffectPaintPropertyNode::toString() const {
return String::format(
- "localTransformSpace=%p outputClip=%p opacity=%f filter=%s",
+ "localTransformSpace=%p outputClip=%p opacity=%f filter=%s blendMode=%s",
m_localTransformSpace.get(), m_outputClip.get(), m_opacity,
- m_filter.toString().ascii().data());
+ m_filter.toString().ascii().data(), SkBlendMode_Name(m_blendMode));
}
} // namespace blink
« no previous file with comments | « no previous file | third_party/WebKit/Source/platform/graphics/paint/ScrollPaintPropertyNode.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698