| Index: Source/platform/graphics/GraphicsContextState.cpp
|
| diff --git a/Source/platform/graphics/GraphicsContextState.cpp b/Source/platform/graphics/GraphicsContextState.cpp
|
| index 603f976ec39ab4677e5fc2f80efa12eb5a54d199..21cdba8077472b2c7925932924ccb04dcf2b69dc 100644
|
| --- a/Source/platform/graphics/GraphicsContextState.cpp
|
| +++ b/Source/platform/graphics/GraphicsContextState.cpp
|
| @@ -16,7 +16,7 @@ GraphicsContextState::GraphicsContextState()
|
| , m_alpha(256)
|
| , m_xferMode(nullptr)
|
| , m_compositeOperator(CompositeSourceOver)
|
| - , m_blendMode(blink::WebBlendModeNormal)
|
| + , m_blendMode(WebBlendModeNormal)
|
| , m_interpolationQuality(InterpolationDefault)
|
| , m_saveCount(0)
|
| , m_shouldAntialias(true)
|
| @@ -229,7 +229,7 @@ void GraphicsContextState::setColorFilter(PassRefPtr<SkColorFilter> colorFilter)
|
| m_fillPaint.setColorFilter(m_colorFilter.get());
|
| }
|
|
|
| -void GraphicsContextState::setCompositeOperation(CompositeOperator compositeOperation, blink::WebBlendMode blendMode)
|
| +void GraphicsContextState::setCompositeOperation(CompositeOperator compositeOperation, WebBlendMode blendMode)
|
| {
|
| m_compositeOperator = compositeOperation;
|
| m_blendMode = blendMode;
|
|
|