Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / platform / graphics / GradientGeneratedImage.h
index 4fbc193..02343fb 100644 (file)
@@ -33,7 +33,7 @@
 #include "platform/graphics/ImageBuffer.h"
 #include "wtf/RefPtr.h"
 
-namespace WebCore {
+namespace blink {
 
 class PLATFORM_EXPORT GradientGeneratedImage : public GeneratedImage {
 public:
@@ -48,10 +48,10 @@ public:
 
 protected:
     virtual void draw(GraphicsContext*, const FloatRect&, const FloatRect&,
-        CompositeOperator, blink::WebBlendMode) OVERRIDE;
+        CompositeOperator, WebBlendMode) OVERRIDE;
     virtual void drawPattern(GraphicsContext*, const FloatRect&,
         const FloatSize&, const FloatPoint&, CompositeOperator,
-        const FloatRect&, blink::WebBlendMode, const IntSize& repeatSpacing) OVERRIDE;
+        const FloatRect&, WebBlendMode, const IntSize& repeatSpacing) OVERRIDE;
 
     GradientGeneratedImage(PassRefPtr<Gradient> generator, const IntSize& size)
         : m_gradient(generator)
@@ -62,6 +62,6 @@ protected:
     RefPtr<Gradient> m_gradient;
 };
 
-}
+} // namespace blink
 
 #endif