| Index: ash/system/chromeos/supervised/tray_supervised_user.cc
|
| diff --git a/ash/system/chromeos/supervised/tray_supervised_user.cc b/ash/system/chromeos/supervised/tray_supervised_user.cc
|
| index 65b748157789f5fd03f5180ab4bbb9115bc5468d..9e6d6b2118264fa8375afda328795c1ad6931e04 100644
|
| --- a/ash/system/chromeos/supervised/tray_supervised_user.cc
|
| +++ b/ash/system/chromeos/supervised/tray_supervised_user.cc
|
| @@ -4,6 +4,8 @@
|
|
|
| #include "ash/system/chromeos/supervised/tray_supervised_user.h"
|
|
|
| +#include <utility>
|
| +
|
| #include "ash/shell.h"
|
| #include "ash/system/chromeos/label_tray_view.h"
|
| #include "ash/system/system_notifier.h"
|
| @@ -100,7 +102,8 @@ void TraySupervisedUser::CreateOrUpdateNotification(
|
| bundle.GetImageNamed(GetSupervisedUserIconId()),
|
| system_notifier::kNotifierSupervisedUser,
|
| base::Closure() /* null callback */));
|
| - message_center::MessageCenter::Get()->AddNotification(notification.Pass());
|
| + message_center::MessageCenter::Get()->AddNotification(
|
| + std::move(notification));
|
| }
|
|
|
| void TraySupervisedUser::CreateOrUpdateSupervisedWarningNotification() {
|
|
|