OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_WM_TEST_WM_TEST_HELPER_H_ | 5 #ifndef UI_WM_TEST_WM_TEST_HELPER_H_ |
6 #define UI_WM_TEST_WM_TEST_HELPER_H_ | 6 #define UI_WM_TEST_WM_TEST_HELPER_H_ |
7 | 7 |
8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
10 #include "ui/aura/client/window_tree_client.h" | 10 #include "ui/aura/test/aura_test_helper.h" |
11 #include "ui/aura/window_tree_host.h" | |
12 | 11 |
13 namespace aura { | 12 namespace aura { |
14 class Window; | |
15 class WindowTreeHost; | |
16 namespace client { | 13 namespace client { |
17 class DefaultActivationClient; | 14 class DefaultActivationClient; |
18 class DefaultCaptureClient; | |
19 class FocusClient; | |
20 } | 15 } |
21 } | 16 } |
22 | 17 |
23 namespace gfx { | 18 namespace gfx { |
24 class Rect; | |
25 class Size; | 19 class Size; |
26 } | 20 } |
27 | 21 |
28 namespace wm { | 22 namespace wm { |
29 class CompoundEventFilter; | |
30 class InputMethodEventFilter; | |
31 } | |
32 | |
33 namespace wm { | |
34 | 23 |
35 // Creates a minimal environment for running the shell. We can't pull in all of | 24 // Creates a minimal environment for running the shell. We can't pull in all of |
36 // ash here, but we can create attach several of the same things we'd find in | 25 // ash here, but we can create attach several of the same things we'd find in |
37 // the ash parts of the code. | 26 // the ash parts of the code. |
38 class WMTestHelper : public aura::client::WindowTreeClient { | 27 class WMTestHelper : public aura::test::AuraTestHelper { |
39 public: | 28 public: |
| 29 // TODO(beng): default size should probably not be passed through the ctor. |
40 explicit WMTestHelper(const gfx::Size& default_window_size); | 30 explicit WMTestHelper(const gfx::Size& default_window_size); |
| 31 WMTestHelper(); |
41 virtual ~WMTestHelper(); | 32 virtual ~WMTestHelper(); |
42 | 33 |
43 aura::WindowTreeHost* host() { return host_.get(); } | 34 // Overridden from aura::test::AuraTestHelper: |
44 | 35 virtual void SetUp() OVERRIDE; |
45 // Overridden from client::WindowTreeClient: | 36 virtual void TearDown() OVERRIDE; |
46 virtual aura::Window* GetDefaultParent(aura::Window* context, | |
47 aura::Window* window, | |
48 const gfx::Rect& bounds) OVERRIDE; | |
49 | 37 |
50 private: | 38 private: |
51 scoped_ptr<aura::WindowTreeHost> host_; | |
52 | |
53 // Owned by the root Window. | |
54 wm::CompoundEventFilter* root_window_event_filter_; | |
55 | |
56 scoped_ptr<aura::client::DefaultCaptureClient> capture_client_; | |
57 scoped_ptr<wm::InputMethodEventFilter> input_method_filter_; | |
58 scoped_ptr<aura::client::DefaultActivationClient> activation_client_; | 39 scoped_ptr<aura::client::DefaultActivationClient> activation_client_; |
59 scoped_ptr<aura::client::FocusClient> focus_client_; | |
60 | 40 |
61 DISALLOW_COPY_AND_ASSIGN(WMTestHelper); | 41 DISALLOW_COPY_AND_ASSIGN(WMTestHelper); |
62 }; | 42 }; |
63 | 43 |
64 } // namespace wm | 44 } // namespace wm |
65 | 45 |
66 #endif // UI_WM_TEST_WM_TEST_HELPER_H_ | 46 #endif // UI_WM_TEST_WM_TEST_HELPER_H_ |
OLD | NEW |