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

Unified Diff: Source/platform/graphics/filters/FEBlend.cpp

Issue 419533002: Make DRT output for FEBlend::m_mode lowercase (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « LayoutTests/TestExpectations ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/graphics/filters/FEBlend.cpp
diff --git a/Source/platform/graphics/filters/FEBlend.cpp b/Source/platform/graphics/filters/FEBlend.cpp
index 421ab9ae2662fec59d787918bb5e6db0bd47fccb..52fbaec7700db3ff1ab29fa7f8f753492c40d988 100644
--- a/Source/platform/graphics/filters/FEBlend.cpp
+++ b/Source/platform/graphics/filters/FEBlend.cpp
@@ -214,22 +214,22 @@ static TextStream& operator<<(TextStream& ts, const BlendModeType& type)
{
switch (type) {
case FEBLEND_MODE_UNKNOWN:
- ts << "UNKNOWN";
+ ts << "unknown";
break;
case FEBLEND_MODE_NORMAL:
- ts << "NORMAL";
+ ts << "normal";
break;
case FEBLEND_MODE_MULTIPLY:
- ts << "MULTIPLY";
+ ts << "multiply";
break;
case FEBLEND_MODE_SCREEN:
- ts << "SCREEN";
+ ts << "screen";
break;
case FEBLEND_MODE_DARKEN:
- ts << "DARKEN";
+ ts << "darken";
break;
case FEBLEND_MODE_LIGHTEN:
- ts << "LIGHTEN";
+ ts << "lighten";
break;
}
return ts;
« no previous file with comments | « LayoutTests/TestExpectations ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698