summaryrefslogtreecommitdiffstats
path: root/ash/test/shell_test_api.cc
diff options
context:
space:
mode:
authorerg@chromium.org <erg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-04-17 16:47:13 +0000
committererg@chromium.org <erg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-04-17 16:47:13 +0000
commit7f7f65c6dec941a0be8d3aac48d7241f03ff0dbe (patch)
tree4b27055eda57b685cf6183aa4684a6ec606f902b /ash/test/shell_test_api.cc
parent59383c78c7b67b435ff4970060213928e1f153b8 (diff)
downloadchromium_src-7f7f65c6dec941a0be8d3aac48d7241f03ff0dbe.zip
chromium_src-7f7f65c6dec941a0be8d3aac48d7241f03ff0dbe.tar.gz
chromium_src-7f7f65c6dec941a0be8d3aac48d7241f03ff0dbe.tar.bz2
Cleanup: Remove unnecessary ".get()" from scoped_ptrs<>.
In r174057, ajwong@ added support for implicit testing to scoped_ptr<>. Removes these in ash/. BUG=232084 Review URL: https://codereview.chromium.org/14297013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194609 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ash/test/shell_test_api.cc')
-rw-r--r--ash/test/shell_test_api.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/ash/test/shell_test_api.cc b/ash/test/shell_test_api.cc
index 72b869a..126beab 100644
--- a/ash/test/shell_test_api.cc
+++ b/ash/test/shell_test_api.cc
@@ -50,7 +50,7 @@ LauncherModel* ShellTestApi::launcher_model() {
void ShellTestApi::DisableOutputConfiguratorAnimation() {
#if defined(OS_CHROMEOS)
- if (shell_->output_configurator_animation_.get()) {
+ if (shell_->output_configurator_animation_) {
shell_->output_configurator_->RemoveObserver(
shell_->output_configurator_animation_.get());
shell_->output_configurator_animation_.reset();