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

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

Issue 811283003: Clean-up of the system shutdown code paths (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: alignment fixes, rebase Created 5 years, 11 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 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 #ifndef CHROME_BROWSER_UI_ASH_SYSTEM_TRAY_DELEGATE_CHROMEOS_H_ 5 #ifndef CHROME_BROWSER_UI_ASH_SYSTEM_TRAY_DELEGATE_CHROMEOS_H_
6 #define CHROME_BROWSER_UI_ASH_SYSTEM_TRAY_DELEGATE_CHROMEOS_H_ 6 #define CHROME_BROWSER_UI_ASH_SYSTEM_TRAY_DELEGATE_CHROMEOS_H_
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "ash/session/session_state_observer.h" 10 #include "ash/session/session_state_observer.h"
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 void ShowChromeSlow() override; 91 void ShowChromeSlow() override;
92 bool ShouldShowDisplayNotification() override; 92 bool ShouldShowDisplayNotification() override;
93 void ShowIMESettings() override; 93 void ShowIMESettings() override;
94 void ShowHelp() override; 94 void ShowHelp() override;
95 void ShowAccessibilityHelp() override; 95 void ShowAccessibilityHelp() override;
96 void ShowAccessibilitySettings() override; 96 void ShowAccessibilitySettings() override;
97 void ShowPublicAccountInfo() override; 97 void ShowPublicAccountInfo() override;
98 void ShowSupervisedUserInfo() override; 98 void ShowSupervisedUserInfo() override;
99 void ShowEnterpriseInfo() override; 99 void ShowEnterpriseInfo() override;
100 void ShowUserLogin() override; 100 void ShowUserLogin() override;
101 void ShutDown() override;
102 void SignOut() override; 101 void SignOut() override;
103 void RequestLockScreen() override; 102 void RequestLockScreen() override;
104 void RequestRestartForUpdate() override; 103 void RequestRestartForUpdate() override;
105 void GetAvailableBluetoothDevices(ash::BluetoothDeviceList* list) override; 104 void GetAvailableBluetoothDevices(ash::BluetoothDeviceList* list) override;
106 void BluetoothStartDiscovering() override; 105 void BluetoothStartDiscovering() override;
107 void BluetoothStopDiscovering() override; 106 void BluetoothStopDiscovering() override;
108 void ConnectToBluetoothDevice(const std::string& address) override; 107 void ConnectToBluetoothDevice(const std::string& address) override;
109 bool IsBluetoothDiscovering() override; 108 bool IsBluetoothDiscovering() override;
110 void GetCurrentIME(ash::IMEInfo* info) override; 109 void GetCurrentIME(ash::IMEInfo* info) override;
111 void GetAvailableIMEList(ash::IMEInfoList* list) override; 110 void GetAvailableIMEList(ash::IMEInfoList* list) override;
(...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after
285 284
286 base::WeakPtrFactory<SystemTrayDelegateChromeOS> weak_ptr_factory_; 285 base::WeakPtrFactory<SystemTrayDelegateChromeOS> weak_ptr_factory_;
287 286
288 DISALLOW_COPY_AND_ASSIGN(SystemTrayDelegateChromeOS); 287 DISALLOW_COPY_AND_ASSIGN(SystemTrayDelegateChromeOS);
289 }; 288 };
290 289
291 ash::SystemTrayDelegate* CreateSystemTrayDelegate(); 290 ash::SystemTrayDelegate* CreateSystemTrayDelegate();
292 291
293 } // namespace chromeos 292 } // namespace chromeos
294 #endif // CHROME_BROWSER_UI_ASH_SYSTEM_TRAY_DELEGATE_CHROMEOS_H_ 293 #endif // CHROME_BROWSER_UI_ASH_SYSTEM_TRAY_DELEGATE_CHROMEOS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698