Index: chrome/browser/ui/autofill/autofill_dialog_controller_unittest.cc |
diff --git a/chrome/browser/ui/autofill/autofill_dialog_controller_unittest.cc b/chrome/browser/ui/autofill/autofill_dialog_controller_unittest.cc |
index 6ea948435fb88442cece2ae18757ea87b4f98609..e39dba598e529312cc0ddc5c5b36da5ed2793a6d 100644 |
--- a/chrome/browser/ui/autofill/autofill_dialog_controller_unittest.cc |
+++ b/chrome/browser/ui/autofill/autofill_dialog_controller_unittest.cc |
@@ -284,8 +284,8 @@ class TestAutofillDialogController |
void ShowNewCreditCardBubble( |
scoped_ptr<CreditCard> new_card, |
scoped_ptr<AutofillProfile> billing_profile) override { |
- mock_new_card_bubble_controller_->Show(new_card.Pass(), |
- billing_profile.Pass()); |
+ mock_new_card_bubble_controller_->Show(std::move(new_card), |
+ std::move(billing_profile)); |
} |
// AutofillDialogControllerImpl calls this method before showing the dialog |