Index: Source/core/html/canvas/CanvasRenderingContext2D.cpp |
diff --git a/Source/core/html/canvas/CanvasRenderingContext2D.cpp b/Source/core/html/canvas/CanvasRenderingContext2D.cpp |
index 0550b0bb9ff80c0a1076719dda3670cb46f26f79..cd52b2983c5c3568ef3b7ec8f546a407910b7928 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 @@ |
if (shouldDrawShadows()) { |
c->setShadow(state().m_shadowOffset, state().m_shadowBlur, state().m_shadowColor, |
- DrawLooperBuilder::ShadowIgnoresTransforms); |
+ DrawLooper::ShadowIgnoresTransforms); |
} else { |
c->clearShadow(); |
} |