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 #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 "ash/ime/input_method_menu_manager.h" | 8 #include "ash/ime/input_method_menu_manager.h" |
9 #include "ash/session/session_state_observer.h" | 9 #include "ash/session/session_state_observer.h" |
10 #include "ash/system/tray/system_tray.h" | 10 #include "ash/system/tray/system_tray.h" |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 virtual void Shutdown() override; | 59 virtual void Shutdown() override; |
60 virtual bool GetTrayVisibilityOnStartup() override; | 60 virtual bool GetTrayVisibilityOnStartup() override; |
61 virtual ash::user::LoginStatus GetUserLoginStatus() const override; | 61 virtual ash::user::LoginStatus GetUserLoginStatus() const override; |
62 virtual void ChangeProfilePicture() override; | 62 virtual void ChangeProfilePicture() override; |
63 virtual const std::string GetEnterpriseDomain() const override; | 63 virtual const std::string GetEnterpriseDomain() const override; |
64 virtual const base::string16 GetEnterpriseMessage() const override; | 64 virtual const base::string16 GetEnterpriseMessage() const override; |
65 virtual const std::string GetSupervisedUserManager() const override; | 65 virtual const std::string GetSupervisedUserManager() const override; |
66 virtual const base::string16 GetSupervisedUserManagerName() const override; | 66 virtual const base::string16 GetSupervisedUserManagerName() const override; |
67 virtual const base::string16 GetSupervisedUserMessage() const override; | 67 virtual const base::string16 GetSupervisedUserMessage() const override; |
68 virtual bool IsUserSupervised() const override; | 68 virtual bool IsUserSupervised() const override; |
69 virtual bool SystemShouldUpgrade() const override; | 69 virtual void GetSystemUpdateInfo(ash::UpdateInfo* info) const override; |
70 virtual base::HourClockType GetHourClockType() const override; | 70 virtual base::HourClockType GetHourClockType() const override; |
71 virtual void ShowSettings() override; | 71 virtual void ShowSettings() override; |
72 virtual bool ShouldShowSettings() override; | 72 virtual bool ShouldShowSettings() override; |
73 virtual void ShowDateSettings() override; | 73 virtual void ShowDateSettings() override; |
74 virtual void ShowSetTimeDialog() override; | 74 virtual void ShowSetTimeDialog() override; |
75 virtual void ShowNetworkSettings(const std::string& service_path) override; | 75 virtual void ShowNetworkSettings(const std::string& service_path) override; |
76 virtual void ShowBluetoothSettings() override; | 76 virtual void ShowBluetoothSettings() override; |
77 virtual void ShowDisplaySettings() override; | 77 virtual void ShowDisplaySettings() override; |
78 virtual void ShowChromeSlow() override; | 78 virtual void ShowChromeSlow() override; |
79 virtual bool ShouldShowDisplayNotification() override; | 79 virtual bool ShouldShowDisplayNotification() override; |
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
258 | 258 |
259 base::WeakPtrFactory<SystemTrayDelegateChromeOS> weak_ptr_factory_; | 259 base::WeakPtrFactory<SystemTrayDelegateChromeOS> weak_ptr_factory_; |
260 | 260 |
261 DISALLOW_COPY_AND_ASSIGN(SystemTrayDelegateChromeOS); | 261 DISALLOW_COPY_AND_ASSIGN(SystemTrayDelegateChromeOS); |
262 }; | 262 }; |
263 | 263 |
264 ash::SystemTrayDelegate* CreateSystemTrayDelegate(); | 264 ash::SystemTrayDelegate* CreateSystemTrayDelegate(); |
265 | 265 |
266 } // namespace chromeos | 266 } // namespace chromeos |
267 #endif // CHROME_BROWSER_UI_ASH_SYSTEM_TRAY_DELEGATE_CHROMEOS_H_ | 267 #endif // CHROME_BROWSER_UI_ASH_SYSTEM_TRAY_DELEGATE_CHROMEOS_H_ |
OLD | NEW |