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

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

Issue 464273002: Cleanup namespace usage in platform/graphics/[filters/* to skia/*] and platform/graphics/[B-D]* (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 4 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 | « Source/platform/graphics/DisplayList.cpp ('k') | Source/platform/graphics/filters/FEConvolveMatrix.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/graphics/filters/FEComposite.cpp
diff --git a/Source/platform/graphics/filters/FEComposite.cpp b/Source/platform/graphics/filters/FEComposite.cpp
index 23e94500c2e6f71f5496384da209981cca52a275..42e869498c9854620ee7b30d6c47c1ddfbcfc253 100644
--- a/Source/platform/graphics/filters/FEComposite.cpp
+++ b/Source/platform/graphics/filters/FEComposite.cpp
@@ -357,18 +357,18 @@ void FEComposite::applySoftware()
}
}
-SkXfermode::Mode toXfermode(blink::CompositeOperationType mode)
+SkXfermode::Mode toXfermode(CompositeOperationType mode)
{
switch (mode) {
- case blink::FECOMPOSITE_OPERATOR_OVER:
+ case FECOMPOSITE_OPERATOR_OVER:
return SkXfermode::kSrcOver_Mode;
- case blink::FECOMPOSITE_OPERATOR_IN:
+ case FECOMPOSITE_OPERATOR_IN:
return SkXfermode::kSrcIn_Mode;
- case blink::FECOMPOSITE_OPERATOR_OUT:
+ case FECOMPOSITE_OPERATOR_OUT:
return SkXfermode::kSrcOut_Mode;
- case blink::FECOMPOSITE_OPERATOR_ATOP:
+ case FECOMPOSITE_OPERATOR_ATOP:
return SkXfermode::kSrcATop_Mode;
- case blink::FECOMPOSITE_OPERATOR_XOR:
+ case FECOMPOSITE_OPERATOR_XOR:
return SkXfermode::kXor_Mode;
default:
ASSERT_NOT_REACHED();
« no previous file with comments | « Source/platform/graphics/DisplayList.cpp ('k') | Source/platform/graphics/filters/FEConvolveMatrix.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698