| Index: ash/system/chromeos/tray_display.cc
|
| diff --git a/ash/system/chromeos/tray_display.cc b/ash/system/chromeos/tray_display.cc
|
| index e4341ff9a1195691f9ce845dd8d78893da010231..3018344faee593ec4714c9b5afc7d870b4e58b82 100644
|
| --- a/ash/system/chromeos/tray_display.cc
|
| +++ b/ash/system/chromeos/tray_display.cc
|
| @@ -4,6 +4,7 @@
|
|
|
| #include "ash/system/chromeos/tray_display.h"
|
|
|
| +#include <utility>
|
| #include <vector>
|
|
|
| #include "ash/display/display_manager.h"
|
| @@ -401,7 +402,8 @@ void TrayDisplay::CreateOrUpdateNotification(
|
| new message_center::HandleNotificationClickedDelegate(
|
| base::Bind(&OpenSettings))));
|
|
|
| - message_center::MessageCenter::Get()->AddNotification(notification.Pass());
|
| + message_center::MessageCenter::Get()->AddNotification(
|
| + std::move(notification));
|
| }
|
|
|
| views::View* TrayDisplay::CreateDefaultView(user::LoginStatus status) {
|
|
|