OLD | NEW |
| (Empty) |
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 | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef UI_AURA_TEST_TEST_STACKING_CLIENT_H_ | |
6 #define UI_AURA_TEST_TEST_STACKING_CLIENT_H_ | |
7 #pragma once | |
8 | |
9 #include "base/basictypes.h" | |
10 #include "base/compiler_specific.h" | |
11 #include "base/memory/scoped_ptr.h" | |
12 #include "ui/aura/client/stacking_client.h" | |
13 | |
14 namespace aura { | |
15 class Window; | |
16 | |
17 namespace test { | |
18 | |
19 class TestStackingClient : public StackingClient { | |
20 public: | |
21 // Callers should allocate a TestStackingClient on the heap and then forget | |
22 // about it -- the c'tor passes ownership of the TestStackingClient to the | |
23 // static Desktop object. | |
24 TestStackingClient(); | |
25 virtual ~TestStackingClient(); | |
26 | |
27 Window* default_container() { return default_container_.get(); } | |
28 | |
29 private: | |
30 // Overridden from StackingClient: | |
31 virtual void AddChildToDefaultParent(Window* window) OVERRIDE; | |
32 | |
33 scoped_ptr<Window> default_container_; | |
34 | |
35 DISALLOW_COPY_AND_ASSIGN(TestStackingClient); | |
36 }; | |
37 | |
38 } // namespace test | |
39 } // namespace aura | |
40 | |
41 #endif // UI_AURA_TEST_TEST_STACKING_CLIENT_H_ | |
OLD | NEW |