| OLD | NEW |
| (Empty) |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef ATHENA_TEST_BASE_TEST_WINDOWS_H_ | |
| 6 #define ATHENA_TEST_BASE_TEST_WINDOWS_H_ | |
| 7 | |
| 8 #include "base/memory/scoped_ptr.h" | |
| 9 #include "ui/base/ui_base_types.h" | |
| 10 #include "ui/wm/public/window_types.h" | |
| 11 | |
| 12 namespace aura { | |
| 13 class Window; | |
| 14 class WindowDelegate; | |
| 15 } | |
| 16 | |
| 17 namespace gfx { | |
| 18 class Rect; | |
| 19 } | |
| 20 | |
| 21 namespace athena { | |
| 22 namespace test { | |
| 23 | |
| 24 scoped_ptr<aura::Window> CreateNormalWindow(aura::WindowDelegate* delegate, | |
| 25 aura::Window* parent); | |
| 26 | |
| 27 scoped_ptr<aura::Window> CreateWindowWithType(aura::WindowDelegate* delegate, | |
| 28 aura::Window* parent, | |
| 29 ui::wm::WindowType window_type); | |
| 30 | |
| 31 scoped_ptr<aura::Window> CreateTransientWindow(aura::WindowDelegate* delegate, | |
| 32 aura::Window* transient_parent, | |
| 33 ui::ModalType modal_type, | |
| 34 bool top_most); | |
| 35 | |
| 36 } // namespace test | |
| 37 } // namespace athena | |
| 38 | |
| 39 #endif // ATHENA_TEST_BASE_TEST_WINDOWS_H_ | |
| OLD | NEW |