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 "chrome/browser/ui/ash/multi_user/multi_user_window_manager_chromeos.h" | 5 #include "chrome/browser/ui/ash/multi_user/multi_user_window_manager_chromeos.h" |
6 | 6 |
7 #include "ash/aura/wm_window_aura.h" | 7 #include "ash/aura/wm_window_aura.h" |
8 #include "ash/common/multi_profile_uma.h" | 8 #include "ash/common/multi_profile_uma.h" |
9 #include "ash/common/session/session_state_delegate.h" | 9 #include "ash/common/session/session_state_delegate.h" |
10 #include "ash/common/shell_window_ids.h" | |
11 #include "ash/common/system/tray/system_tray_notifier.h" | 10 #include "ash/common/system/tray/system_tray_notifier.h" |
12 #include "ash/common/wm/maximize_mode/maximize_mode_controller.h" | 11 #include "ash/common/wm/maximize_mode/maximize_mode_controller.h" |
13 #include "ash/common/wm/window_state.h" | 12 #include "ash/common/wm/window_state.h" |
14 #include "ash/common/wm_shell.h" | 13 #include "ash/common/wm_shell.h" |
15 #include "ash/root_window_controller.h" | 14 #include "ash/root_window_controller.h" |
| 15 #include "ash/shared/shell_window_ids.h" |
16 #include "ash/shell.h" | 16 #include "ash/shell.h" |
17 #include "ash/wm/window_state_aura.h" | 17 #include "ash/wm/window_state_aura.h" |
18 #include "base/auto_reset.h" | 18 #include "base/auto_reset.h" |
19 #include "base/macros.h" | 19 #include "base/macros.h" |
20 #include "base/message_loop/message_loop.h" | 20 #include "base/message_loop/message_loop.h" |
21 #include "base/strings/string_util.h" | 21 #include "base/strings/string_util.h" |
22 #include "chrome/browser/browser_process.h" | 22 #include "chrome/browser/browser_process.h" |
23 #include "chrome/browser/chrome_notification_types.h" | 23 #include "chrome/browser/chrome_notification_types.h" |
24 #include "chrome/browser/chromeos/login/session/user_session_manager.h" | 24 #include "chrome/browser/chromeos/login/session/user_session_manager.h" |
25 #include "chrome/browser/profiles/profile.h" | 25 #include "chrome/browser/profiles/profile.h" |
(...skipping 726 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
752 window->Hide(); | 752 window->Hide(); |
753 } | 753 } |
754 | 754 |
755 int MultiUserWindowManagerChromeOS::GetAdjustedAnimationTimeInMS( | 755 int MultiUserWindowManagerChromeOS::GetAdjustedAnimationTimeInMS( |
756 int default_time_in_ms) const { | 756 int default_time_in_ms) const { |
757 return animation_speed_ == ANIMATION_SPEED_NORMAL ? default_time_in_ms : | 757 return animation_speed_ == ANIMATION_SPEED_NORMAL ? default_time_in_ms : |
758 (animation_speed_ == ANIMATION_SPEED_FAST ? 10 : 0); | 758 (animation_speed_ == ANIMATION_SPEED_FAST ? 10 : 0); |
759 } | 759 } |
760 | 760 |
761 } // namespace chrome | 761 } // namespace chrome |
OLD | NEW |