| Index: ui/views/corewm/visibility_controller_unittest.cc
|
| diff --git a/ui/views/corewm/visibility_controller_unittest.cc b/ui/views/corewm/visibility_controller_unittest.cc
|
| index 222d7af61e8b25212e5f3057e62bf971b608c0f9..1cf90aa5e1822690b289c2d6cabc352cf0129469 100644
|
| --- a/ui/views/corewm/visibility_controller_unittest.cc
|
| +++ b/ui/views/corewm/visibility_controller_unittest.cc
|
| @@ -31,12 +31,14 @@ TEST_F(VisibilityControllerTest, AnimateHideDoesntHideWindowLayer) {
|
| SetChildWindowVisibilityChangesAnimated(root_window());
|
|
|
| aura::test::TestWindowDelegate d;
|
| - scoped_ptr<aura::Window> animatable(
|
| - aura::test::CreateTestWindowWithDelegate(
|
| - &d, -2, gfx::Rect(0, 0, 50, 50), root_window()));
|
| + scoped_ptr<aura::Window> animatable(aura::test::CreateTestWindowWithDelegate(
|
| + &d, -2, gfx::Rect(0, 0, 50, 50), root_window()));
|
| scoped_ptr<aura::Window> non_animatable(
|
| aura::test::CreateTestWindowWithDelegateAndType(
|
| - &d, aura::client::WINDOW_TYPE_CONTROL, -3, gfx::Rect(51, 51, 50, 50),
|
| + &d,
|
| + ui::wm::WINDOW_TYPE_CONTROL,
|
| + -3,
|
| + gfx::Rect(51, 51, 50, 50),
|
| root_window()));
|
| EXPECT_TRUE(animatable->IsVisible());
|
| EXPECT_TRUE(animatable->layer()->visible());
|
|
|