| Index: ash/system/tray/system_tray_delegate.h
|
| diff --git a/ash/system/tray/system_tray_delegate.h b/ash/system/tray/system_tray_delegate.h
|
| index f0a504a58f3ae3b520d48b57f83bded763a795c8..4039be94d0094f63b81ec4233c45f7464d104c1c 100644
|
| --- a/ash/system/tray/system_tray_delegate.h
|
| +++ b/ash/system/tray/system_tray_delegate.h
|
| @@ -116,6 +116,9 @@ class SystemTrayDelegate {
|
| virtual const gfx::ImageSkia& GetUserImage() const = 0;
|
| virtual user::LoginStatus GetUserLoginStatus() const = 0;
|
|
|
| + // Returns the domain that manages the device, if it is enterprise-enrolled.
|
| + virtual const std::string GetEnterpriseDomain() const = 0;
|
| +
|
| // Returns whether a system upgrade is available.
|
| virtual bool SystemShouldUpgrade() const = 0;
|
|
|
| @@ -149,11 +152,14 @@ class SystemTrayDelegate {
|
| // Shows settings related to input methods.
|
| virtual void ShowIMESettings() = 0;
|
|
|
| + // Shows help.
|
| + virtual void ShowHelp() = 0;
|
| +
|
| // Show accessilibity help.
|
| virtual void ShowAccessibilityHelp() = 0;
|
|
|
| - // Shows help.
|
| - virtual void ShowHelp() = 0;
|
| + // Shows more information about public account mode.
|
| + virtual void ShowPublicAccountInfo() = 0;
|
|
|
| // Attempts to shut down the system.
|
| virtual void ShutDown() = 0;
|
|
|