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_; |
} |