| Index: content/renderer/compositor_bindings/web_animation_impl.h
|
| diff --git a/webkit/renderer/compositor_bindings/web_animation_impl.h b/content/renderer/compositor_bindings/web_animation_impl.h
|
| similarity index 72%
|
| rename from webkit/renderer/compositor_bindings/web_animation_impl.h
|
| rename to content/renderer/compositor_bindings/web_animation_impl.h
|
| index 07d72c7860c342c90356de5b4e959812eab8efd9..8f165dc13b3c9a06966dd662ac8f87c89b7f293e 100644
|
| --- a/webkit/renderer/compositor_bindings/web_animation_impl.h
|
| +++ b/content/renderer/compositor_bindings/web_animation_impl.h
|
| @@ -2,22 +2,26 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#ifndef WEBKIT_RENDERER_COMPOSITOR_BINDINGS_WEB_ANIMATION_IMPL_H_
|
| -#define WEBKIT_RENDERER_COMPOSITOR_BINDINGS_WEB_ANIMATION_IMPL_H_
|
| +#ifndef CONTENT_RENDERER_COMPOSITOR_BINDINGS_WEB_ANIMATION_IMPL_H_
|
| +#define CONTENT_RENDERER_COMPOSITOR_BINDINGS_WEB_ANIMATION_IMPL_H_
|
|
|
| #include "base/memory/scoped_ptr.h"
|
| +#include "content/common/content_export.h"
|
| #include "third_party/WebKit/public/platform/WebAnimation.h"
|
| -#include "webkit/renderer/compositor_bindings/webkit_compositor_bindings_export.h"
|
|
|
| -namespace cc { class Animation; }
|
| +namespace cc {
|
| +class Animation;
|
| +}
|
|
|
| -namespace blink { class WebAnimationCurve; }
|
| +namespace blink {
|
| +class WebAnimationCurve;
|
| +}
|
|
|
| -namespace webkit {
|
| +namespace content {
|
|
|
| class WebAnimationImpl : public blink::WebAnimation {
|
| public:
|
| - WEBKIT_COMPOSITOR_BINDINGS_EXPORT WebAnimationImpl(
|
| + CONTENT_EXPORT WebAnimationImpl(
|
| const blink::WebAnimationCurve& curve,
|
| TargetProperty target,
|
| int animation_id,
|
| @@ -49,6 +53,7 @@ class WebAnimationImpl : public blink::WebAnimation {
|
| DISALLOW_COPY_AND_ASSIGN(WebAnimationImpl);
|
| };
|
|
|
| -} // namespace webkit
|
| +} // namespace content
|
| +
|
| +#endif // CONTENT_RENDERER_COMPOSITOR_BINDINGS_WEB_ANIMATION_IMPL_H_
|
|
|
| -#endif // WEBKIT_RENDERER_COMPOSITOR_BINDINGS_WEB_ANIMATION_IMPL_H_
|
|
|