| 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/test/shell_test_api.h" | 5 #include "ash/test/shell_test_api.h" |
| 6 | 6 |
| 7 #include "ash/root_window_controller.h" | 7 #include "ash/root_window_controller.h" |
| 8 #include "ash/shell.h" | 8 #include "ash/shell.h" |
| 9 | 9 |
| 10 namespace ash { | 10 namespace ash { |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 | 28 |
| 29 internal::WorkspaceController* ShellTestApi::workspace_controller() { | 29 internal::WorkspaceController* ShellTestApi::workspace_controller() { |
| 30 return shell_->GetPrimaryRootWindowController()->workspace_controller(); | 30 return shell_->GetPrimaryRootWindowController()->workspace_controller(); |
| 31 } | 31 } |
| 32 | 32 |
| 33 internal::ScreenPositionController* | 33 internal::ScreenPositionController* |
| 34 ShellTestApi::screen_position_controller() { | 34 ShellTestApi::screen_position_controller() { |
| 35 return shell_->screen_position_controller_.get(); | 35 return shell_->screen_position_controller_.get(); |
| 36 } | 36 } |
| 37 | 37 |
| 38 AshNativeCursorManager* ShellTestApi::ash_native_cursor_manager() { |
| 39 return shell_->native_cursor_manager_; |
| 40 } |
| 41 |
| 38 LauncherModel* ShellTestApi::launcher_model() { | 42 LauncherModel* ShellTestApi::launcher_model() { |
| 39 return shell_->launcher_model_.get(); | 43 return shell_->launcher_model_.get(); |
| 40 } | 44 } |
| 41 | 45 |
| 42 } // namespace test | 46 } // namespace test |
| 43 } // namespace ash | 47 } // namespace ash |
| OLD | NEW |