| Index: views/aura_desktop/aura_desktop_main.cc
|
| diff --git a/views/aura_desktop/aura_desktop_main.cc b/views/aura_desktop/aura_desktop_main.cc
|
| index d95acd7b9c076c2fd99cc2de90b0a421bfce1376..c25dfc366dd67d8c3de29b79644eb1f901e8eddb 100644
|
| --- a/views/aura_desktop/aura_desktop_main.cc
|
| +++ b/views/aura_desktop/aura_desktop_main.cc
|
| @@ -145,7 +145,7 @@ int main(int argc, char** argv) {
|
| aura::Window* window1 = new aura::Window(&window_delegate1);
|
| window1->set_id(1);
|
| window1->Init();
|
| - window1->SetBounds(gfx::Rect(100, 100, 400, 400), 0);
|
| + window1->SetBounds(gfx::Rect(100, 100, 400, 400));
|
| window1->SetVisibility(aura::Window::VISIBILITY_SHOWN);
|
| window1->SetParent(NULL);
|
|
|
| @@ -153,7 +153,7 @@ int main(int argc, char** argv) {
|
| aura::Window* window2 = new aura::Window(&window_delegate2);
|
| window2->set_id(2);
|
| window2->Init();
|
| - window2->SetBounds(gfx::Rect(200, 200, 350, 350), 0);
|
| + window2->SetBounds(gfx::Rect(200, 200, 350, 350));
|
| window2->SetVisibility(aura::Window::VISIBILITY_SHOWN);
|
| window2->SetParent(NULL);
|
|
|
| @@ -161,7 +161,7 @@ int main(int argc, char** argv) {
|
| aura::Window* window3 = new aura::Window(&window_delegate3);
|
| window3->set_id(3);
|
| window3->Init();
|
| - window3->SetBounds(gfx::Rect(10, 10, 50, 50), 0);
|
| + window3->SetBounds(gfx::Rect(10, 10, 50, 50));
|
| window3->SetVisibility(aura::Window::VISIBILITY_SHOWN);
|
| window3->SetParent(window2);
|
|
|
|
|