| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef UI_AURA_TEST_TEST_WINDOWS_H_ | 5 #ifndef UI_AURA_TEST_TEST_WINDOWS_H_ |
| 6 #define UI_AURA_TEST_TEST_WINDOWS_H_ | 6 #define UI_AURA_TEST_TEST_WINDOWS_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
| 10 #include "third_party/skia/include/core/SkColor.h" | 10 #include "third_party/skia/include/core/SkColor.h" |
| 11 #include "ui/aura/client/window_types.h" |
| 11 #include "ui/aura/test/test_window_delegate.h" | 12 #include "ui/aura/test/test_window_delegate.h" |
| 12 #include "ui/aura/test/aura_test_base.h" | 13 #include "ui/aura/test/aura_test_base.h" |
| 13 #include "ui/aura/window_types.h" | |
| 14 | 14 |
| 15 namespace aura { | 15 namespace aura { |
| 16 namespace test { | 16 namespace test { |
| 17 | 17 |
| 18 Window* CreateTestWindowWithId(int id, Window* parent); | 18 Window* CreateTestWindowWithId(int id, Window* parent); |
| 19 Window* CreateTestWindowWithBounds(const gfx::Rect& bounds, Window* parent); | 19 Window* CreateTestWindowWithBounds(const gfx::Rect& bounds, Window* parent); |
| 20 Window* CreateTestWindow(SkColor color, | 20 Window* CreateTestWindow(SkColor color, |
| 21 int id, | 21 int id, |
| 22 const gfx::Rect& bounds, | 22 const gfx::Rect& bounds, |
| 23 Window* parent); | 23 Window* parent); |
| 24 Window* CreateTestWindowWithDelegate(WindowDelegate* delegate, | 24 Window* CreateTestWindowWithDelegate(WindowDelegate* delegate, |
| 25 int id, | 25 int id, |
| 26 const gfx::Rect& bounds, | 26 const gfx::Rect& bounds, |
| 27 Window* parent); | 27 Window* parent); |
| 28 Window* CreateTestWindowWithDelegateAndType(WindowDelegate* delegate, | 28 Window* CreateTestWindowWithDelegateAndType(WindowDelegate* delegate, |
| 29 WindowType type, | 29 client::WindowType type, |
| 30 int id, | 30 int id, |
| 31 const gfx::Rect& bounds, | 31 const gfx::Rect& bounds, |
| 32 Window* parent); | 32 Window* parent); |
| 33 | 33 |
| 34 } // namespace test | 34 } // namespace test |
| 35 } // namespace aura | 35 } // namespace aura |
| 36 | 36 |
| 37 #endif // UI_AURA_TEST_TEST_WINDOWS_H_ | 37 #endif // UI_AURA_TEST_TEST_WINDOWS_H_ |
| OLD | NEW |