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

Side by Side Diff: chrome/browser/ui/ash/system_tray_delegate_chromeos.cc

Issue 178183005: Add LogoutConfirmationController to show LogoutConfirmationDialogs (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Comments addressed. Created 6 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 | Annotate | Revision Log
« no previous file with comments | « ash/system/tray/system_tray_notifier.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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/system_tray_delegate_chromeos.h" 5 #include "chrome/browser/ui/ash/system_tray_delegate_chromeos.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <set> 8 #include <set>
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
11 11
12 #include "ash/ash_switches.h" 12 #include "ash/ash_switches.h"
13 #include "ash/desktop_background/desktop_background_controller.h" 13 #include "ash/desktop_background/desktop_background_controller.h"
14 #include "ash/ime/input_method_menu_item.h" 14 #include "ash/ime/input_method_menu_item.h"
15 #include "ash/ime/input_method_menu_manager.h" 15 #include "ash/ime/input_method_menu_manager.h"
16 #include "ash/metrics/user_metrics_recorder.h" 16 #include "ash/metrics/user_metrics_recorder.h"
17 #include "ash/session_state_delegate.h" 17 #include "ash/session_state_delegate.h"
18 #include "ash/session_state_observer.h" 18 #include "ash/session_state_observer.h"
19 #include "ash/shell.h" 19 #include "ash/shell.h"
20 #include "ash/shell_delegate.h" 20 #include "ash/shell_delegate.h"
21 #include "ash/shell_window_ids.h" 21 #include "ash/shell_window_ids.h"
22 #include "ash/system/bluetooth/bluetooth_observer.h" 22 #include "ash/system/bluetooth/bluetooth_observer.h"
23 #include "ash/system/date/clock_observer.h" 23 #include "ash/system/date/clock_observer.h"
24 #include "ash/system/drive/drive_observer.h" 24 #include "ash/system/drive/drive_observer.h"
25 #include "ash/system/ime/ime_observer.h" 25 #include "ash/system/ime/ime_observer.h"
26 #include "ash/system/logout_button/logout_button_observer.h" 26 #include "ash/system/session/logout_button_observer.h"
27 #include "ash/system/tray/system_tray.h" 27 #include "ash/system/tray/system_tray.h"
28 #include "ash/system/tray/system_tray_delegate.h" 28 #include "ash/system/tray/system_tray_delegate.h"
29 #include "ash/system/tray/system_tray_notifier.h" 29 #include "ash/system/tray/system_tray_notifier.h"
30 #include "ash/system/tray_accessibility.h" 30 #include "ash/system/tray_accessibility.h"
31 #include "ash/system/tray_caps_lock.h" 31 #include "ash/system/tray_caps_lock.h"
32 #include "ash/system/user/login_status.h" 32 #include "ash/system/user/login_status.h"
33 #include "ash/system/user/update_observer.h" 33 #include "ash/system/user/update_observer.h"
34 #include "ash/system/user/user_observer.h" 34 #include "ash/system/user/user_observer.h"
35 #include "ash/volume_control_delegate.h" 35 #include "ash/volume_control_delegate.h"
36 #include "ash/wm/lock_state_controller.h" 36 #include "ash/wm/lock_state_controller.h"
(...skipping 1320 matching lines...) Expand 10 before | Expand all | Expand 10 after
1357 accessibility_subscription_.reset(); 1357 accessibility_subscription_.reset();
1358 else 1358 else
1359 OnAccessibilityModeChanged(details.notify); 1359 OnAccessibilityModeChanged(details.notify);
1360 } 1360 }
1361 1361
1362 ash::SystemTrayDelegate* CreateSystemTrayDelegate() { 1362 ash::SystemTrayDelegate* CreateSystemTrayDelegate() {
1363 return new SystemTrayDelegateChromeOS(); 1363 return new SystemTrayDelegateChromeOS();
1364 } 1364 }
1365 1365
1366 } // namespace chromeos 1366 } // namespace chromeos
OLDNEW
« no previous file with comments | « ash/system/tray/system_tray_notifier.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698