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

Unified Diff: Source/platform/graphics/GraphicsContextState.h

Issue 476683002: Cleanup namespace usage in platform/graphics/[G-S]* (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
Index: Source/platform/graphics/GraphicsContextState.h
diff --git a/Source/platform/graphics/GraphicsContextState.h b/Source/platform/graphics/GraphicsContextState.h
index 0cfb967baa30827506eaa868f753975490302fb7..f0095563b1a0b5fb3f3b709ad80d7d94fe77472b 100644
--- a/Source/platform/graphics/GraphicsContextState.h
+++ b/Source/platform/graphics/GraphicsContextState.h
@@ -126,9 +126,9 @@ public:
void setColorFilter(PassRefPtr<SkColorFilter>);
// Compositing control, for the CSS and Canvas compositing spec.
- void setCompositeOperation(CompositeOperator, blink::WebBlendMode);
+ void setCompositeOperation(CompositeOperator, WebBlendMode);
CompositeOperator compositeOperator() const { return m_compositeOperator; }
- blink::WebBlendMode blendMode() const { return m_blendMode; }
+ WebBlendMode blendMode() const { return m_blendMode; }
SkXfermode* xferMode() const { return m_xferMode.get(); }
// Image interpolation control.
@@ -177,7 +177,7 @@ private:
RefPtr<SkColorFilter> m_colorFilter;
CompositeOperator m_compositeOperator;
- blink::WebBlendMode m_blendMode;
+ WebBlendMode m_blendMode;
InterpolationQuality m_interpolationQuality;
« no previous file with comments | « Source/platform/graphics/GraphicsContextRecorder.cpp ('k') | Source/platform/graphics/GraphicsContextState.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698