OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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/lock_state_controller_impl2.h" | 5 #include "ash/wm/lock_state_controller_impl2.h" |
6 | 6 |
7 #include "ash/ash_switches.h" | 7 #include "ash/ash_switches.h" |
8 #include "ash/cancel_mode.h" | 8 #include "ash/cancel_mode.h" |
9 #include "ash/shell.h" | 9 #include "ash/shell.h" |
10 #include "ash/shell_delegate.h" | 10 #include "ash/shell_delegate.h" |
11 #include "ash/shell_window_ids.h" | 11 #include "ash/shell_window_ids.h" |
12 #include "ash/wm/session_state_animator.h" | 12 #include "ash/wm/session_state_animator.h" |
13 #include "base/bind_helpers.h" | 13 #include "base/bind_helpers.h" |
14 #include "base/command_line.h" | 14 #include "base/command_line.h" |
15 #include "base/timer.h" | 15 #include "base/timer/timer.h" |
16 #include "ui/aura/root_window.h" | 16 #include "ui/aura/root_window.h" |
17 #include "ui/compositor/layer_animation_sequence.h" | 17 #include "ui/compositor/layer_animation_sequence.h" |
18 #include "ui/compositor/scoped_layer_animation_settings.h" | 18 #include "ui/compositor/scoped_layer_animation_settings.h" |
19 #include "ui/views/corewm/compound_event_filter.h" | 19 #include "ui/views/corewm/compound_event_filter.h" |
20 | 20 |
21 #if defined(OS_CHROMEOS) | 21 #if defined(OS_CHROMEOS) |
22 #include "base/chromeos/chromeos_version.h" | 22 #include "base/chromeos/chromeos_version.h" |
23 #endif | 23 #endif |
24 | 24 |
25 namespace ash { | 25 namespace ash { |
(...skipping 611 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
637 unlocked_properties_->background_is_hidden) { | 637 unlocked_properties_->background_is_hidden) { |
638 animator_->StartAnimationWithObserver( | 638 animator_->StartAnimationWithObserver( |
639 internal::SessionStateAnimator::DESKTOP_BACKGROUND, | 639 internal::SessionStateAnimator::DESKTOP_BACKGROUND, |
640 internal::SessionStateAnimator::ANIMATION_FADE_OUT, | 640 internal::SessionStateAnimator::ANIMATION_FADE_OUT, |
641 speed, | 641 speed, |
642 observer); | 642 observer); |
643 } | 643 } |
644 } | 644 } |
645 | 645 |
646 } // namespace ash | 646 } // namespace ash |
OLD | NEW |