Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(98)

Unified Diff: components/autofill/core/browser/ui/card_unmask_prompt_controller_impl_unittest.cc

Issue 1859453002: components/autofill: scoped_ptr -> unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase on password_manager changes Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: components/autofill/core/browser/ui/card_unmask_prompt_controller_impl_unittest.cc
diff --git a/components/autofill/core/browser/ui/card_unmask_prompt_controller_impl_unittest.cc b/components/autofill/core/browser/ui/card_unmask_prompt_controller_impl_unittest.cc
index fb6e4b864add1172958f18267f13ecb2e732407e..216a3b3a7447e6cf15178d5bc56a11003d4a8950 100644
--- a/components/autofill/core/browser/ui/card_unmask_prompt_controller_impl_unittest.cc
+++ b/components/autofill/core/browser/ui/card_unmask_prompt_controller_impl_unittest.cc
@@ -124,10 +124,10 @@ class CardUnmaskPromptControllerImplTest : public testing::Test {
prefs::kAutofillWalletImportStorageCheckboxState, value);
}
- scoped_ptr<TestCardUnmaskPromptView> test_unmask_prompt_view_;
- scoped_ptr<TestingPrefServiceSimple> pref_service_;
- scoped_ptr<TestCardUnmaskPromptController> controller_;
- scoped_ptr<TestCardUnmaskDelegate> delegate_;
+ std::unique_ptr<TestCardUnmaskPromptView> test_unmask_prompt_view_;
+ std::unique_ptr<TestingPrefServiceSimple> pref_service_;
+ std::unique_ptr<TestCardUnmaskPromptController> controller_;
+ std::unique_ptr<TestCardUnmaskDelegate> delegate_;
private:
DISALLOW_COPY_AND_ASSIGN(CardUnmaskPromptControllerImplTest);

Powered by Google App Engine
This is Rietveld 408576698