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

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

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/system_tray_delegate.h ('k') | chrome/browser/ui/ash/system_tray_delegate_chromeos.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.cc
diff --git a/ash/system/tray/system_tray_delegate.cc b/ash/system/tray/system_tray_delegate.cc
index 19a7c7e82d463e0ad25b3a3a51a2c720eaeff2bd..314817eefe5aa2137d6b84a4f43ee7a0486fda4b 100644
--- a/ash/system/tray/system_tray_delegate.cc
+++ b/ash/system/tray/system_tray_delegate.cc
@@ -71,19 +71,19 @@ std::string SystemTrayDelegate::GetEnterpriseDomain() const {
return std::string();
}
-const base::string16 SystemTrayDelegate::GetEnterpriseMessage() const {
+base::string16 SystemTrayDelegate::GetEnterpriseMessage() const {
return base::string16();
}
-const std::string SystemTrayDelegate::GetSupervisedUserManager() const {
+std::string SystemTrayDelegate::GetSupervisedUserManager() const {
return std::string();
}
-const base::string16 SystemTrayDelegate::GetSupervisedUserManagerName() const {
+base::string16 SystemTrayDelegate::GetSupervisedUserManagerName() const {
return base::string16();
}
-const base::string16 SystemTrayDelegate::GetSupervisedUserMessage() const {
+base::string16 SystemTrayDelegate::GetSupervisedUserMessage() const {
return base::string16();
}
« no previous file with comments | « ash/system/tray/system_tray_delegate.h ('k') | chrome/browser/ui/ash/system_tray_delegate_chromeos.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698