Chromium Code Reviews| Index: ui/gfx/compositor/dummy_layer_animation_delegate.h |
| diff --git a/ui/gfx/compositor/test_layer_animation_delegate.h b/ui/gfx/compositor/dummy_layer_animation_delegate.h |
| similarity index 68% |
| rename from ui/gfx/compositor/test_layer_animation_delegate.h |
| rename to ui/gfx/compositor/dummy_layer_animation_delegate.h |
| index 046e25cafd0c95ed714acff4100aecb36ba311bc..4a46ad7370584634c69e9ec790daae1d51a1bb33 100644 |
| --- a/ui/gfx/compositor/test_layer_animation_delegate.h |
| +++ b/ui/gfx/compositor/dummy_layer_animation_delegate.h |
| @@ -2,21 +2,24 @@ |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| -#ifndef UI_GFX_COMPOSITOR_TEST_LAYER_ANIMATION_DELEGATE_H_ |
| -#define UI_GFX_COMPOSITOR_TEST_LAYER_ANIMATION_DELEGATE_H_ |
| +#ifndef UI_GFX_COMPOSITOR_DUMMY_LAYER_ANIMATION_DELEGATE_H_ |
| +#define UI_GFX_COMPOSITOR_DUMMY_LAYER_ANIMATION_DELEGATE_H_ |
| #pragma once |
| #include "base/compiler_specific.h" |
| #include "ui/gfx/rect.h" |
| #include "ui/gfx/transform.h" |
| +#include "ui/gfx/compositor/compositor_export.h" |
| #include "ui/gfx/compositor/layer_animation_delegate.h" |
| namespace ui { |
| -class TestLayerAnimationDelegate : public LayerAnimationDelegate { |
| +class COMPOSITOR_EXPORT DummyLayerAnimationDelegate |
|
sky
2011/10/20 20:30:30
Why are you renaming this? Test is a better name t
|
| + : public LayerAnimationDelegate { |
| public: |
| - TestLayerAnimationDelegate(); |
| - virtual ~TestLayerAnimationDelegate(); |
| + DummyLayerAnimationDelegate(); |
| + DummyLayerAnimationDelegate(const LayerAnimationDelegate& other); |
| + virtual ~DummyLayerAnimationDelegate(); |
| // Implementation of LayerAnimationDelegate |
| virtual void SetBoundsFromAnimation(const gfx::Rect& bounds) OVERRIDE; |
| @@ -37,4 +40,4 @@ class TestLayerAnimationDelegate : public LayerAnimationDelegate { |
| } // namespace ui |
| -#endif // UI_GFX_COMPOSITOR_TEST_LAYER_ANIMATION_DELEGATE_H_ |
| +#endif // UI_GFX_COMPOSITOR_DUMMY_LAYER_ANIMATION_DELEGATE_H_ |