Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(116)

Side by Side Diff: ash/common/system/chromeos/session/logout_button_tray.cc

Issue 2761063002: Move more from WmShell to Shell (Closed)
Patch Set: merge Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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/common/system/chromeos/session/logout_button_tray.h" 5 #include "ash/common/system/chromeos/session/logout_button_tray.h"
6 6
7 #include <memory> 7 #include <memory>
8 #include <utility> 8 #include <utility>
9 9
10 #include "ash/common/shelf/wm_shelf_util.h" 10 #include "ash/common/shelf/wm_shelf_util.h"
11 #include "ash/common/system/chromeos/session/logout_confirmation_controller.h" 11 #include "ash/common/system/chromeos/session/logout_confirmation_controller.h"
12 #include "ash/common/system/tray/system_tray_controller.h" 12 #include "ash/common/system/tray/system_tray_controller.h"
13 #include "ash/common/system/tray/system_tray_notifier.h" 13 #include "ash/common/system/tray/system_tray_notifier.h"
14 #include "ash/common/system/tray/tray_constants.h" 14 #include "ash/common/system/tray/tray_constants.h"
15 #include "ash/common/system/tray/tray_utils.h" 15 #include "ash/common/system/tray/tray_utils.h"
16 #include "ash/common/system/user/login_status.h" 16 #include "ash/common/system/user/login_status.h"
17 #include "ash/common/wm_shell.h" 17 #include "ash/common/wm_shell.h"
18 #include "ash/public/cpp/shelf_types.h" 18 #include "ash/public/cpp/shelf_types.h"
19 #include "ash/resources/grit/ash_resources.h" 19 #include "ash/resources/grit/ash_resources.h"
20 #include "ash/resources/vector_icons/vector_icons.h" 20 #include "ash/resources/vector_icons/vector_icons.h"
21 #include "ash/shell.h"
21 #include "base/logging.h" 22 #include "base/logging.h"
22 #include "third_party/skia/include/core/SkColor.h" 23 #include "third_party/skia/include/core/SkColor.h"
23 #include "ui/events/event.h" 24 #include "ui/events/event.h"
24 #include "ui/gfx/color_palette.h" 25 #include "ui/gfx/color_palette.h"
25 #include "ui/gfx/geometry/insets.h" 26 #include "ui/gfx/geometry/insets.h"
26 #include "ui/gfx/geometry/size.h" 27 #include "ui/gfx/geometry/size.h"
27 #include "ui/gfx/paint_vector_icon.h" 28 #include "ui/gfx/paint_vector_icon.h"
28 #include "ui/views/bubble/tray_bubble_view.h" 29 #include "ui/views/bubble/tray_bubble_view.h"
29 #include "ui/views/controls/button/label_button.h" 30 #include "ui/views/controls/button/label_button.h"
30 #include "ui/views/controls/button/label_button_border.h" 31 #include "ui/views/controls/button/label_button_border.h"
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 78
78 void LogoutButtonTray::ButtonPressed(views::Button* sender, 79 void LogoutButtonTray::ButtonPressed(views::Button* sender,
79 const ui::Event& event) { 80 const ui::Event& event) {
80 if (sender != button_) { 81 if (sender != button_) {
81 TrayBackgroundView::ButtonPressed(sender, event); 82 TrayBackgroundView::ButtonPressed(sender, event);
82 return; 83 return;
83 } 84 }
84 85
85 if (dialog_duration_ <= base::TimeDelta()) { 86 if (dialog_duration_ <= base::TimeDelta()) {
86 // Sign out immediately if |dialog_duration_| is non-positive. 87 // Sign out immediately if |dialog_duration_| is non-positive.
87 WmShell::Get()->system_tray_controller()->SignOut(); 88 Shell::Get()->system_tray_controller()->SignOut();
88 } else if (WmShell::Get()->logout_confirmation_controller()) { 89 } else if (Shell::Get()->logout_confirmation_controller()) {
89 WmShell::Get()->logout_confirmation_controller()->ConfirmLogout( 90 Shell::Get()->logout_confirmation_controller()->ConfirmLogout(
90 base::TimeTicks::Now() + dialog_duration_); 91 base::TimeTicks::Now() + dialog_duration_);
91 } 92 }
92 } 93 }
93 94
94 void LogoutButtonTray::OnShowLogoutButtonInTrayChanged(bool show) { 95 void LogoutButtonTray::OnShowLogoutButtonInTrayChanged(bool show) {
95 show_logout_button_in_tray_ = show; 96 show_logout_button_in_tray_ = show;
96 UpdateVisibility(); 97 UpdateVisibility();
97 } 98 }
98 99
99 void LogoutButtonTray::OnLogoutDialogDurationChanged(base::TimeDelta duration) { 100 void LogoutButtonTray::OnLogoutDialogDurationChanged(base::TimeDelta duration) {
(...skipping 23 matching lines...) Expand all
123 button_->SetText(base::string16()); 124 button_->SetText(base::string16());
124 button_->SetAccessibleName(title); 125 button_->SetAccessibleName(title);
125 button_->SetImage(views::LabelButton::STATE_NORMAL, 126 button_->SetImage(views::LabelButton::STATE_NORMAL,
126 gfx::CreateVectorIcon(kShelfLogoutIcon, kTrayIconColor)); 127 gfx::CreateVectorIcon(kShelfLogoutIcon, kTrayIconColor));
127 button_->SetMinSize(gfx::Size(kTrayItemSize, kTrayItemSize)); 128 button_->SetMinSize(gfx::Size(kTrayItemSize, kTrayItemSize));
128 } 129 }
129 UpdateVisibility(); 130 UpdateVisibility();
130 } 131 }
131 132
132 } // namespace ash 133 } // namespace ash
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698