| Index: ui/wm/core/window_animations_unittest.cc
|
| diff --git a/ui/wm/core/window_animations_unittest.cc b/ui/wm/core/window_animations_unittest.cc
|
| index 20428fa2a95f638400ccdbff26dd4106ba0c90f5..edce6afee6564eae9679b0b84f9af763cc4e5d6e 100644
|
| --- a/ui/wm/core/window_animations_unittest.cc
|
| +++ b/ui/wm/core/window_animations_unittest.cc
|
| @@ -18,8 +18,7 @@
|
| using aura::Window;
|
| using ui::Layer;
|
|
|
| -namespace views {
|
| -namespace corewm {
|
| +namespace wm {
|
|
|
| class WindowAnimationsTest : public aura::test::AuraTestBase {
|
| public:
|
| @@ -129,7 +128,7 @@ TEST_F(WindowAnimationsTest, NotifyHideCompleted) {
|
| NotifyHideCompletedAnimationHost animation_host;
|
| scoped_ptr<aura::Window> window(aura::test::CreateTestWindowWithId(0, NULL));
|
| aura::client::SetAnimationHost(window.get(), &animation_host);
|
| - views::corewm::SetWindowVisibilityAnimationType(
|
| + wm::SetWindowVisibilityAnimationType(
|
| window.get(), WINDOW_VISIBILITY_ANIMATION_TYPE_FADE);
|
| AnimateOnChildWindowVisibilityChanged(window.get(), true);
|
| EXPECT_TRUE(window->layer()->visible());
|
| @@ -139,5 +138,4 @@ TEST_F(WindowAnimationsTest, NotifyHideCompleted) {
|
| EXPECT_TRUE(animation_host.hide_completed());
|
| }
|
|
|
| -} // namespace corewm
|
| -} // namespace views
|
| +} // namespace wm
|
|
|