Index: webkit/renderer/compositor_bindings/web_to_cc_animation_delegate_adapter.h |
diff --git a/webkit/renderer/compositor_bindings/web_to_cc_animation_delegate_adapter.h b/webkit/renderer/compositor_bindings/web_to_cc_animation_delegate_adapter.h |
index d59693d5857712c37cd8d33e44715920667e18ab..9d673aac7dbdd74888874895197f30ab91c04807 100644 |
--- a/webkit/renderer/compositor_bindings/web_to_cc_animation_delegate_adapter.h |
+++ b/webkit/renderer/compositor_bindings/web_to_cc_animation_delegate_adapter.h |
@@ -9,20 +9,20 @@ |
#include "base/compiler_specific.h" |
#include "cc/animation/animation_delegate.h" |
-namespace WebKit { class WebAnimationDelegate; } |
+namespace blink { class WebAnimationDelegate; } |
namespace webkit { |
class WebToCCAnimationDelegateAdapter : public cc::AnimationDelegate { |
public: |
explicit WebToCCAnimationDelegateAdapter( |
- WebKit::WebAnimationDelegate* delegate); |
+ blink::WebAnimationDelegate* delegate); |
private: |
virtual void NotifyAnimationStarted(double time) OVERRIDE; |
virtual void NotifyAnimationFinished(double time) OVERRIDE; |
- WebKit::WebAnimationDelegate* delegate_; |
+ blink::WebAnimationDelegate* delegate_; |
DISALLOW_COPY_AND_ASSIGN(WebToCCAnimationDelegateAdapter); |
}; |