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

Side by Side Diff: ui/aura/test/test_stacking_client.h

Issue 8916020: Second attempt at moving the StackingClient to a property on the RootWindow. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years 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/aura/test/aura_test_base.cc ('k') | ui/aura/test/test_stacking_client.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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_
OLDNEW
« no previous file with comments | « ui/aura/test/aura_test_base.cc ('k') | ui/aura/test/test_stacking_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698