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

Unified Diff: ash/system/chromeos/managed/tray_locally_managed_user.cc

Issue 16103006: Add stub icons for playpen. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Merge with ToT Created 7 years, 7 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
Index: ash/system/chromeos/managed/tray_locally_managed_user.cc
diff --git a/ash/system/chromeos/managed/tray_locally_managed_user.cc b/ash/system/chromeos/managed/tray_locally_managed_user.cc
index 40aff0533b74c6b9d9e2bdaf1370337814ee6a2f..707589403013375db548e2d3ec8dd35718f4b44c 100644
--- a/ash/system/chromeos/managed/tray_locally_managed_user.cc
+++ b/ash/system/chromeos/managed/tray_locally_managed_user.cc
@@ -32,9 +32,8 @@ class ManagedUserNotificationView : public TrayNotificationView {
private:
void CreateMessageView() {
- // TODO(antrim): replace to appropriate icon when there is one.
message_view_ = new LabelTrayView(tray_managed_,
- IDR_AURA_UBER_TRAY_ENTERPRISE_DARK);
+ IDR_AURA_UBER_TRAY_MANAGED_USER);
base::string16 message = Shell::GetInstance()->system_tray_delegate()->
GetLocallyManagedUserMessage();
message_view_->SetMessage(message);
@@ -81,8 +80,7 @@ views::View* TrayLocallyManagedUser::CreateDefaultView(
if (status != ash::user::LOGGED_IN_LOCALLY_MANAGED)
return NULL;
- // TODO(antrim): replace to appropriate icon when there is one.
- tray_view_ = new LabelTrayView(this, IDR_AURA_UBER_TRAY_ENTERPRISE_DARK);
+ tray_view_ = new LabelTrayView(this, IDR_AURA_UBER_TRAY_MANAGED_USER);
UpdateMessage();
return tray_view_;
}

Powered by Google App Engine
This is Rietveld 408576698