Index: chrome/browser/ui/autofill/save_card_bubble_controller_impl_unittest.cc |
diff --git a/chrome/browser/ui/autofill/save_card_bubble_controller_impl_unittest.cc b/chrome/browser/ui/autofill/save_card_bubble_controller_impl_unittest.cc |
index 5a8658e6c7d47812462fb9b2d45dce611b4d7e22..2fa5eae3f6e78d4e7470d94074416fe0036d34b8 100644 |
--- a/chrome/browser/ui/autofill/save_card_bubble_controller_impl_unittest.cc |
+++ b/chrome/browser/ui/autofill/save_card_bubble_controller_impl_unittest.cc |
@@ -5,6 +5,7 @@ |
#include "chrome/browser/ui/autofill/save_card_bubble_controller_impl.h" |
#include <stddef.h> |
+#include <utility> |
#include "base/json/json_reader.h" |
#include "base/macros.h" |
@@ -72,7 +73,7 @@ class SaveCardBubbleControllerImplTest : public BrowserWithTestWindowTest { |
scoped_ptr<base::DictionaryValue> legal_message = |
dictionary->CreateDeepCopy(); |
controller()->ShowBubbleForUpload(base::Bind(&SaveCardCallback), |
- legal_message.Pass()); |
+ std::move(legal_message)); |
} |
// Returns true if lines are the same. |