| Index: Source/core/html/canvas/CanvasRenderingContext2D.cpp
|
| diff --git a/Source/core/html/canvas/CanvasRenderingContext2D.cpp b/Source/core/html/canvas/CanvasRenderingContext2D.cpp
|
| index cd52b2983c5c3568ef3b7ec8f546a407910b7928..0550b0bb9ff80c0a1076719dda3670cb46f26f79 100644
|
| --- a/Source/core/html/canvas/CanvasRenderingContext2D.cpp
|
| +++ b/Source/core/html/canvas/CanvasRenderingContext2D.cpp
|
| @@ -60,8 +60,8 @@
|
| #include "core/rendering/RenderTheme.h"
|
| #include "platform/fonts/FontCache.h"
|
| #include "platform/geometry/FloatQuad.h"
|
| +#include "platform/graphics/DrawLooperBuilder.h"
|
| #include "platform/graphics/GraphicsContextStateSaver.h"
|
| -#include "platform/graphics/DrawLooper.h"
|
| #include "platform/text/TextRun.h"
|
| #include "platform/weborigin/SecurityOrigin.h"
|
| #include "wtf/CheckedArithmetic.h"
|
| @@ -1180,7 +1180,7 @@ void CanvasRenderingContext2D::applyShadow()
|
|
|
| if (shouldDrawShadows()) {
|
| c->setShadow(state().m_shadowOffset, state().m_shadowBlur, state().m_shadowColor,
|
| - DrawLooper::ShadowIgnoresTransforms);
|
| + DrawLooperBuilder::ShadowIgnoresTransforms);
|
| } else {
|
| c->clearShadow();
|
| }
|
|
|