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

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

Issue 1376663002: Remove const qualifier from function return type. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 3 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/default_system_tray_delegate.cc ('k') | ash/system/tray/system_tray_delegate.cc » ('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 c16cdb71370707813b605946f429c8e91aba4369..9859a48885e4ff79fc05f16f507adff97c250487 100644
--- a/ash/system/tray/system_tray_delegate.h
+++ b/ash/system/tray/system_tray_delegate.h
@@ -144,17 +144,17 @@ class ASH_EXPORT SystemTrayDelegate {
virtual std::string GetEnterpriseDomain() const;
// Returns notification for enterprise enrolled devices.
- virtual const base::string16 GetEnterpriseMessage() const;
+ virtual base::string16 GetEnterpriseMessage() const;
// Returns the display email of the user that manages the current supervised
// user.
- virtual const std::string GetSupervisedUserManager() const;
+ virtual std::string GetSupervisedUserManager() const;
// Returns the name of the user that manages the current supervised user.
- virtual const base::string16 GetSupervisedUserManagerName() const;
+ virtual base::string16 GetSupervisedUserManagerName() const;
// Returns the notification for supervised users.
- virtual const base::string16 GetSupervisedUserMessage() const;
+ virtual base::string16 GetSupervisedUserMessage() const;
// Returns true if the current user is supervised: has legacy supervised
// account or kid account.
« no previous file with comments | « ash/system/tray/default_system_tray_delegate.cc ('k') | ash/system/tray/system_tray_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698