| 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 2cfd27d98cab272e6b907cdaa64e6c79f5630bcd..e5f25ec2dda637c8d0f3e8a0b05bb4322dee46f3 100644
|
| --- a/ash/system/tray/system_tray_delegate.h
|
| +++ b/ash/system/tray/system_tray_delegate.h
|
| @@ -148,6 +148,12 @@ class SystemTrayDelegate {
|
| // Returns notification for enterprise enrolled devices.
|
| virtual const base::string16 GetEnterpriseMessage() const = 0;
|
|
|
| + // Returns the email of user that manages current locally managed user.
|
| + virtual const std::string GetLocallyManagedUserManager() const = 0;
|
| +
|
| + // Returns notification for locally managed users.
|
| + virtual const base::string16 GetLocallyManagedUserMessage() const = 0;
|
| +
|
| // Returns whether a system upgrade is available.
|
| virtual bool SystemShouldUpgrade() const = 0;
|
|
|
| @@ -193,6 +199,9 @@ class SystemTrayDelegate {
|
| // Shows information about enterprise enrolled devices.
|
| virtual void ShowEnterpriseInfo() = 0;
|
|
|
| + // Shows information about locally managed users.
|
| + virtual void ShowLocallyManagedUserInfo() = 0;
|
| +
|
| // Shows login UI to add other users to this session.
|
| virtual void ShowUserLogin() = 0;
|
|
|
|
|