OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #include "ash/wm/workspace_controller.h" | 5 #include "ash/wm/workspace_controller.h" |
6 | 6 |
7 #include "ash/shell_window_ids.h" | 7 #include "ash/shell_window_ids.h" |
8 #include "ash/wm/activation_controller.h" | 8 #include "ash/wm/activation_controller.h" |
9 #include "ash/wm/window_util.h" | 9 #include "ash/wm/window_util.h" |
10 #include "ash/wm/workspace/workspace.h" | 10 #include "ash/wm/workspace/workspace.h" |
(...skipping 25 matching lines...) Expand all Loading... |
36 } | 36 } |
37 | 37 |
38 virtual void TearDown() OVERRIDE { | 38 virtual void TearDown() OVERRIDE { |
39 activation_controller_.reset(); | 39 activation_controller_.reset(); |
40 controller_.reset(); | 40 controller_.reset(); |
41 aura::test::AuraTestBase::TearDown(); | 41 aura::test::AuraTestBase::TearDown(); |
42 } | 42 } |
43 | 43 |
44 aura::Window* CreateTestWindow() { | 44 aura::Window* CreateTestWindow() { |
45 aura::Window* window = new aura::Window(NULL); | 45 aura::Window* window = new aura::Window(NULL); |
46 window->Init(ui::Layer::LAYER_HAS_NO_TEXTURE); | 46 window->Init(ui::Layer::LAYER_NOT_DRAWN); |
47 contents_view()->AddChild(window); | 47 contents_view()->AddChild(window); |
48 window->Show(); | 48 window->Show(); |
49 return window; | 49 return window; |
50 } | 50 } |
51 | 51 |
52 aura::Window* contents_view() { | 52 aura::Window* contents_view() { |
53 return contents_view_; | 53 return contents_view_; |
54 } | 54 } |
55 | 55 |
56 WorkspaceManager* workspace_manager() { | 56 WorkspaceManager* workspace_manager() { |
57 return controller_->workspace_manager(); | 57 return controller_->workspace_manager(); |
58 } | 58 } |
59 | 59 |
60 scoped_ptr<WorkspaceController> controller_; | 60 scoped_ptr<WorkspaceController> controller_; |
61 | 61 |
62 private: | 62 private: |
63 aura::Window* contents_view_; | 63 aura::Window* contents_view_; |
64 | 64 |
65 scoped_ptr<ActivationController> activation_controller_; | 65 scoped_ptr<ActivationController> activation_controller_; |
66 | 66 |
67 DISALLOW_COPY_AND_ASSIGN(WorkspaceControllerTest); | 67 DISALLOW_COPY_AND_ASSIGN(WorkspaceControllerTest); |
68 }; | 68 }; |
69 | 69 |
70 } // namespace internal | 70 } // namespace internal |
71 } // namespace ash | 71 } // namespace ash |
OLD | NEW |