| 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/display/display_configuration_controller.h" | 7 #include "ash/display/display_configuration_controller.h" |
| 8 #include "ash/root_window_controller.h" | 8 #include "ash/root_window_controller.h" |
| 9 #include "ash/session/session_state_delegate.h" | 9 #include "ash/session/session_state_delegate.h" |
| 10 #include "ash/shelf/shelf_delegate.h" | 10 #include "ash/shelf/shelf_delegate.h" |
| (...skipping 26 matching lines...) Expand all Loading... |
| 37 } | 37 } |
| 38 | 38 |
| 39 ShelfModel* ShellTestApi::shelf_model() { | 39 ShelfModel* ShellTestApi::shelf_model() { |
| 40 return shell_->shelf_model_.get(); | 40 return shell_->shelf_model_.get(); |
| 41 } | 41 } |
| 42 | 42 |
| 43 DragDropController* ShellTestApi::drag_drop_controller() { | 43 DragDropController* ShellTestApi::drag_drop_controller() { |
| 44 return shell_->drag_drop_controller_.get(); | 44 return shell_->drag_drop_controller_.get(); |
| 45 } | 45 } |
| 46 | 46 |
| 47 app_list::AppListShower* ShellTestApi::app_list_shower() { | 47 app_list::AppListPresenter* ShellTestApi::app_list_presenter() { |
| 48 return shell_->delegate_->GetAppListShower(); | 48 return shell_->delegate_->GetAppListPresenter(); |
| 49 } | 49 } |
| 50 | 50 |
| 51 void ShellTestApi::DisableDisplayAnimator() { | 51 void ShellTestApi::DisableDisplayAnimator() { |
| 52 shell_->display_configuration_controller()->ResetAnimatorForTest(); | 52 shell_->display_configuration_controller()->ResetAnimatorForTest(); |
| 53 } | 53 } |
| 54 | 54 |
| 55 void ShellTestApi::SetShelfDelegate(ShelfDelegate* delegate) { | 55 void ShellTestApi::SetShelfDelegate(ShelfDelegate* delegate) { |
| 56 shell_->shelf_delegate_.reset(delegate); | 56 shell_->shelf_delegate_.reset(delegate); |
| 57 } | 57 } |
| 58 | 58 |
| 59 void ShellTestApi::SetSessionStateDelegate( | 59 void ShellTestApi::SetSessionStateDelegate( |
| 60 SessionStateDelegate* session_state_delegate) { | 60 SessionStateDelegate* session_state_delegate) { |
| 61 shell_->session_state_delegate_.reset(session_state_delegate); | 61 shell_->session_state_delegate_.reset(session_state_delegate); |
| 62 } | 62 } |
| 63 | 63 |
| 64 } // namespace test | 64 } // namespace test |
| 65 } // namespace ash | 65 } // namespace ash |
| OLD | NEW |