Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(83)

Side by Side Diff: ui/wm/test/wm_test_helper.h

Issue 248773002: aura: A couple of API cleanups. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « ui/wm/core/input_method_event_filter_unittest.cc ('k') | ui/wm/test/wm_test_helper.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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"
(...skipping 30 matching lines...) Expand all
41 aura::WindowTreeHost* host() { return host_.get(); } 41 aura::WindowTreeHost* host() { return host_.get(); }
42 42
43 // Overridden from client::WindowTreeClient: 43 // Overridden from client::WindowTreeClient:
44 virtual aura::Window* GetDefaultParent(aura::Window* context, 44 virtual aura::Window* GetDefaultParent(aura::Window* context,
45 aura::Window* window, 45 aura::Window* window,
46 const gfx::Rect& bounds) OVERRIDE; 46 const gfx::Rect& bounds) OVERRIDE;
47 47
48 private: 48 private:
49 scoped_ptr<aura::WindowTreeHost> host_; 49 scoped_ptr<aura::WindowTreeHost> host_;
50 50
51 // Owned by the root Window. 51 scoped_ptr<wm::CompoundEventFilter> root_window_event_filter_;
52 wm::CompoundEventFilter* root_window_event_filter_;
53
54 scoped_ptr<aura::client::DefaultCaptureClient> capture_client_; 52 scoped_ptr<aura::client::DefaultCaptureClient> capture_client_;
55 scoped_ptr<wm::InputMethodEventFilter> input_method_filter_; 53 scoped_ptr<wm::InputMethodEventFilter> input_method_filter_;
56 scoped_ptr<aura::client::DefaultActivationClient> activation_client_; 54 scoped_ptr<aura::client::DefaultActivationClient> activation_client_;
57 scoped_ptr<aura::client::FocusClient> focus_client_; 55 scoped_ptr<aura::client::FocusClient> focus_client_;
58 56
59 DISALLOW_COPY_AND_ASSIGN(WMTestHelper); 57 DISALLOW_COPY_AND_ASSIGN(WMTestHelper);
60 }; 58 };
61 59
62 } // namespace wm 60 } // namespace wm
63 61
64 #endif // UI_WM_TEST_WM_TEST_HELPER_H_ 62 #endif // UI_WM_TEST_WM_TEST_HELPER_H_
OLDNEW
« no previous file with comments | « ui/wm/core/input_method_event_filter_unittest.cc ('k') | ui/wm/test/wm_test_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698