Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(122)

Unified Diff: webkit/renderer/compositor_bindings/web_to_cc_animation_delegate_adapter.h

Issue 61553006: Rename WebKit namespace to blink (part 5) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);
};

Powered by Google App Engine
This is Rietveld 408576698