| 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/client/window_tree_client.h" |
| 11 #include "ui/aura/window_tree_host.h" | 11 #include "ui/aura/window_tree_host.h" |
| 12 | 12 |
| 13 namespace aura { | 13 namespace aura { |
| 14 class Window; | 14 class Window; |
| 15 class WindowTreeHost; | 15 class WindowTreeHost; |
| 16 namespace client { | 16 namespace client { |
| 17 class DefaultActivationClient; | 17 class DefaultActivationClient; |
| 18 class DefaultCaptureClient; | 18 class DefaultCaptureClient; |
| 19 class FocusClient; | 19 class FocusClient; |
| 20 } | 20 } |
| 21 } | 21 } |
| 22 | 22 |
| 23 namespace gfx { | 23 namespace gfx { |
| 24 class Rect; | 24 class Rect; |
| 25 class Size; | 25 class Size; |
| 26 } | 26 } |
| 27 | 27 |
| 28 namespace ui { | |
| 29 class PlatformEventSource; | |
| 30 } | |
| 31 | |
| 32 namespace wm { | 28 namespace wm { |
| 33 | 29 |
| 34 class CompoundEventFilter; | 30 class CompoundEventFilter; |
| 35 class InputMethodEventFilter; | 31 class InputMethodEventFilter; |
| 36 | 32 |
| 37 // Creates a minimal environment for running the shell. We can't pull in all of | 33 // Creates a minimal environment for running the shell. We can't pull in all of |
| 38 // ash here, but we can create attach several of the same things we'd find in | 34 // ash here, but we can create attach several of the same things we'd find in |
| 39 // the ash parts of the code. | 35 // the ash parts of the code. |
| 40 class WMTestHelper : public aura::client::WindowTreeClient { | 36 class WMTestHelper : public aura::client::WindowTreeClient { |
| 41 public: | 37 public: |
| (...skipping 10 matching lines...) Expand all Loading... |
| 52 private: | 48 private: |
| 53 scoped_ptr<aura::WindowTreeHost> host_; | 49 scoped_ptr<aura::WindowTreeHost> host_; |
| 54 | 50 |
| 55 // Owned by the root Window. | 51 // Owned by the root Window. |
| 56 wm::CompoundEventFilter* root_window_event_filter_; | 52 wm::CompoundEventFilter* root_window_event_filter_; |
| 57 | 53 |
| 58 scoped_ptr<aura::client::DefaultCaptureClient> capture_client_; | 54 scoped_ptr<aura::client::DefaultCaptureClient> capture_client_; |
| 59 scoped_ptr<wm::InputMethodEventFilter> input_method_filter_; | 55 scoped_ptr<wm::InputMethodEventFilter> input_method_filter_; |
| 60 scoped_ptr<aura::client::DefaultActivationClient> activation_client_; | 56 scoped_ptr<aura::client::DefaultActivationClient> activation_client_; |
| 61 scoped_ptr<aura::client::FocusClient> focus_client_; | 57 scoped_ptr<aura::client::FocusClient> focus_client_; |
| 62 scoped_ptr<ui::PlatformEventSource> event_source_; | |
| 63 | 58 |
| 64 DISALLOW_COPY_AND_ASSIGN(WMTestHelper); | 59 DISALLOW_COPY_AND_ASSIGN(WMTestHelper); |
| 65 }; | 60 }; |
| 66 | 61 |
| 67 } // namespace wm | 62 } // namespace wm |
| 68 | 63 |
| 69 #endif // UI_WM_TEST_WM_TEST_HELPER_H_ | 64 #endif // UI_WM_TEST_WM_TEST_HELPER_H_ |
| OLD | NEW |