diff options
author | dnicoara@chromium.org <dnicoara@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-04-24 23:17:04 +0000 |
---|---|---|
committer | dnicoara@chromium.org <dnicoara@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-04-24 23:17:04 +0000 |
commit | 129aad8497f52e19450572120d514dec4a8c66d6 (patch) | |
tree | 9c65fa9b793cd90618d61c45b39d4d66b1a5f3c8 /ash/test | |
parent | 1eb088e6b30f7e8dd2d0eabcef6993a0c7bc7ef0 (diff) | |
download | chromium_src-129aad8497f52e19450572120d514dec4a8c66d6.zip chromium_src-129aad8497f52e19450572120d514dec4a8c66d6.tar.gz chromium_src-129aad8497f52e19450572120d514dec4a8c66d6.tar.bz2 |
Update naming from OutputConfiguratorAnimation to DisplayConfiguratorAnimation
BUG=333413
Review URL: https://codereview.chromium.org/250163002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@266034 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ash/test')
-rw-r--r-- | ash/test/ash_test_helper.cc | 2 | ||||
-rw-r--r-- | ash/test/shell_test_api.cc | 10 | ||||
-rw-r--r-- | ash/test/shell_test_api.h | 2 |
3 files changed, 7 insertions, 7 deletions
diff --git a/ash/test/ash_test_helper.cc b/ash/test/ash_test_helper.cc index f9e812c..5787568 100644 --- a/ash/test/ash_test_helper.cc +++ b/ash/test/ash_test_helper.cc @@ -98,7 +98,7 @@ void AshTestHelper::SetUp(bool start_session) { test::DisplayManagerTestApi(shell->display_manager()). DisableChangeDisplayUponHostResize(); - ShellTestApi(shell).DisableOutputConfiguratorAnimation(); + ShellTestApi(shell).DisableDisplayConfiguratorAnimation(); test_screenshot_delegate_ = new TestScreenshotDelegate(); shell->accelerator_controller()->SetScreenshotDelegate( diff --git a/ash/test/shell_test_api.cc b/ash/test/shell_test_api.cc index d44a137..0a7d4fd 100644 --- a/ash/test/shell_test_api.cc +++ b/ash/test/shell_test_api.cc @@ -9,7 +9,7 @@ #include "ash/shell.h" #if defined(OS_CHROMEOS) -#include "ash/display/output_configurator_animation.h" +#include "ash/display/display_configurator_animation.h" #include "ui/display/chromeos/display_configurator.h" #endif @@ -59,12 +59,12 @@ MaximizeModeWindowManager* ShellTestApi::maximize_mode_window_manager() { return shell_->maximize_mode_window_manager_.get(); } -void ShellTestApi::DisableOutputConfiguratorAnimation() { +void ShellTestApi::DisableDisplayConfiguratorAnimation() { #if defined(OS_CHROMEOS) - if (shell_->output_configurator_animation_) { + if (shell_->display_configurator_animation_) { shell_->display_configurator_->RemoveObserver( - shell_->output_configurator_animation_.get()); - shell_->output_configurator_animation_.reset(); + shell_->display_configurator_animation_.get()); + shell_->display_configurator_animation_.reset(); } #endif // defined(OS_CHROMEOS) } diff --git a/ash/test/shell_test_api.h b/ash/test/shell_test_api.h index 68c3749..7364397 100644 --- a/ash/test/shell_test_api.h +++ b/ash/test/shell_test_api.h @@ -41,7 +41,7 @@ public: DragDropController* drag_drop_controller(); AppListController* app_list_controller(); MaximizeModeWindowManager* maximize_mode_window_manager(); - void DisableOutputConfiguratorAnimation(); + void DisableDisplayConfiguratorAnimation(); // Set ShelfDelegate. void SetShelfDelegate(ShelfDelegate* delegate); |