| 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 73fd0ca4ccca483b66423c392264ae1b1dd8b931..dffa9f1a4d28feaa32c0c776a8f8e92ef07ea66f 100644
|
| --- a/ash/system/tray/system_tray_delegate.h
|
| +++ b/ash/system/tray/system_tray_delegate.h
|
| @@ -140,15 +140,15 @@ class ASH_EXPORT SystemTrayDelegate {
|
| // Returns notification for enterprise enrolled devices.
|
| virtual const base::string16 GetEnterpriseMessage() const = 0;
|
|
|
| - // Returns the display email of user that manages current
|
| - // locally managed user.
|
| - virtual const std::string GetLocallyManagedUserManager() const = 0;
|
| + // Returns the display email of the user that manages the current supervised
|
| + // user.
|
| + virtual const std::string GetSupervisedUserManager() const = 0;
|
|
|
| - // Returns the name of user that manages current locally managed user.
|
| - virtual const base::string16 GetLocallyManagedUserManagerName() const = 0;
|
| + // Returns the name of the user that manages the current supervised user.
|
| + virtual const base::string16 GetSupervisedUserManagerName() const = 0;
|
|
|
| - // Returns notification for locally managed users.
|
| - virtual const base::string16 GetLocallyManagedUserMessage() const = 0;
|
| + // Returns the notification for supervised users.
|
| + virtual const base::string16 GetSupervisedUserMessage() const = 0;
|
|
|
| // Returns whether a system upgrade is available.
|
| virtual bool SystemShouldUpgrade() const = 0;
|
| @@ -206,8 +206,8 @@ class ASH_EXPORT SystemTrayDelegate {
|
| // Shows information about enterprise enrolled devices.
|
| virtual void ShowEnterpriseInfo() = 0;
|
|
|
| - // Shows information about locally managed users.
|
| - virtual void ShowLocallyManagedUserInfo() = 0;
|
| + // Shows information about supervised users.
|
| + virtual void ShowSupervisedUserInfo() = 0;
|
|
|
| // Shows login UI to add other users to this session.
|
| virtual void ShowUserLogin() = 0;
|
|
|