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

Unified Diff: ash/system/audio/tray_volume.cc

Issue 9580024: ash uber tray: Allow customizing each item depending on whether the user is logged in or not. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: missing file 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/system/audio/tray_volume.h ('k') | ash/system/brightness/tray_brightness.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/system/audio/tray_volume.cc
diff --git a/ash/system/audio/tray_volume.cc b/ash/system/audio/tray_volume.cc
index 0bfa5bc732fc71b3db72b39179d60def77bf7070..bbf37f235dc482e505788d05ddf37863434e979d 100644
--- a/ash/system/audio/tray_volume.cc
+++ b/ash/system/audio/tray_volume.cc
@@ -148,16 +148,16 @@ TrayVolume::TrayVolume() {
TrayVolume::~TrayVolume() {
}
-views::View* TrayVolume::CreateTrayView() {
+views::View* TrayVolume::CreateTrayView(user::LoginStatus status) {
return NULL;
}
-views::View* TrayVolume::CreateDefaultView() {
+views::View* TrayVolume::CreateDefaultView(user::LoginStatus status) {
volume_view_.reset(new tray::VolumeView);
return volume_view_.get();
}
-views::View* TrayVolume::CreateDetailedView() {
+views::View* TrayVolume::CreateDetailedView(user::LoginStatus status) {
volume_view_.reset(new tray::VolumeView);
return volume_view_.get();
}
« no previous file with comments | « ash/system/audio/tray_volume.h ('k') | ash/system/brightness/tray_brightness.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698