| Index: ui/aura/window_unittest.cc
|
| diff --git a/ui/aura/window_unittest.cc b/ui/aura/window_unittest.cc
|
| index c1b74644ff9d873f46a0255e8c0b49715646ee3f..eed32470c99fcd4ddc559de9f50a58a96de53f90 100644
|
| --- a/ui/aura/window_unittest.cc
|
| +++ b/ui/aura/window_unittest.cc
|
| @@ -199,7 +199,7 @@ class WindowTest : public testing::Test {
|
| Window* window = new Window(delegate);
|
| window->set_id(id);
|
| window->Init();
|
| - window->SetBounds(bounds, 0);
|
| + window->SetBounds(bounds);
|
| window->SetVisibility(Window::VISIBILITY_SHOWN);
|
| window->SetParent(parent);
|
| return window;
|
| @@ -222,7 +222,7 @@ TEST_F(WindowTest, HitTest) {
|
| Window w1(new TestWindowDelegate(SK_ColorWHITE));
|
| w1.set_id(1);
|
| w1.Init();
|
| - w1.SetBounds(gfx::Rect(10, 10, 50, 50), 0);
|
| + w1.SetBounds(gfx::Rect(10, 10, 50, 50));
|
| w1.SetVisibility(Window::VISIBILITY_SHOWN);
|
| w1.SetParent(NULL);
|
|
|
|
|