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

Unified Diff: ash/system/tray/system_tray_delegate.h

Issue 14507003: Add tray warning for Locally managed users. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix win-aura compile error Created 7 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ash/system/tray/system_tray.cc ('k') | ash/system/tray/test_system_tray_delegate.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
« no previous file with comments | « ash/system/tray/system_tray.cc ('k') | ash/system/tray/test_system_tray_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698