Index: ash/system/web_notification/ash_popup_alignment_delegate_unittest.cc |
diff --git a/ash/system/web_notification/ash_popup_alignment_delegate_unittest.cc b/ash/system/web_notification/ash_popup_alignment_delegate_unittest.cc |
index ad4358d8f21fbdb300c34085b2127f5bea492062..9884e4b19fe93a93b2184e7a742b687983114947 100644 |
--- a/ash/system/web_notification/ash_popup_alignment_delegate_unittest.cc |
+++ b/ash/system/web_notification/ash_popup_alignment_delegate_unittest.cc |
@@ -4,6 +4,7 @@ |
#include "ash/system/web_notification/ash_popup_alignment_delegate.h" |
+#include <utility> |
#include <vector> |
#include "ash/display/display_manager.h" |
@@ -69,7 +70,7 @@ class AshPopupAlignmentDelegateTest : public test::AshTestBase { |
alignment_delegate_.reset(); |
return; |
} |
- alignment_delegate_ = delegate.Pass(); |
+ alignment_delegate_ = std::move(delegate); |
UpdateWorkArea(alignment_delegate_.get(), |
Shell::GetScreen()->GetPrimaryDisplay()); |
} |