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

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

Issue 9584034: ash: Constantify user methods of SystemTrayDelegate. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase ... Created 8 years, 10 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/shell.cc ('k') | chrome/browser/chromeos/system/ash_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 88e49b4430292b2a48722ffc1d133efa741b9df5..c3cf38f761d75d995e9161d651e04b5d7b69a433 100644
--- a/ash/system/tray/system_tray_delegate.h
+++ b/ash/system/tray/system_tray_delegate.h
@@ -17,10 +17,10 @@ class SystemTrayDelegate {
virtual ~SystemTrayDelegate() {}
// Gets information about the logged in user.
- virtual const std::string GetUserDisplayName() = 0;
- virtual const std::string GetUserEmail() = 0;
- virtual const SkBitmap& GetUserImage() = 0;
- virtual user::LoginStatus GetUserLoginStatus() = 0;
+ virtual const std::string GetUserDisplayName() const = 0;
+ virtual const std::string GetUserEmail() const = 0;
+ virtual const SkBitmap& GetUserImage() const = 0;
+ virtual user::LoginStatus GetUserLoginStatus() const = 0;
// Shows settings.
virtual void ShowSettings() = 0;
« no previous file with comments | « ash/shell.cc ('k') | chrome/browser/chromeos/system/ash_system_tray_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698