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

Unified Diff: chrome/browser/ui/autofill/country_combobox_model_unittest.cc

Issue 1865213004: Convert //chrome/browser/ui from scoped_ptr to std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 8 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: chrome/browser/ui/autofill/country_combobox_model_unittest.cc
diff --git a/chrome/browser/ui/autofill/country_combobox_model_unittest.cc b/chrome/browser/ui/autofill/country_combobox_model_unittest.cc
index bbf57f8a788200d49ce88e68912da2a3f961a243..b0647a4320b4c1f56d0a168d185d1781fb2c47f4 100644
--- a/chrome/browser/ui/autofill/country_combobox_model_unittest.cc
+++ b/chrome/browser/ui/autofill/country_combobox_model_unittest.cc
@@ -4,7 +4,8 @@
#include "chrome/browser/ui/autofill/country_combobox_model.h"
-#include "base/memory/scoped_ptr.h"
+#include <memory>
+
#include "chrome/browser/browser_process.h"
#include "chrome/browser/signin/account_tracker_service_factory.h"
#include "chrome/browser/signin/signin_manager_factory.h"
@@ -41,7 +42,7 @@ class CountryComboboxModelTest : public testing::Test {
content::TestBrowserThreadBundle thread_bundle_;
TestingProfile profile_;
TestPersonalDataManager manager_;
- scoped_ptr<CountryComboboxModel> model_;
+ std::unique_ptr<CountryComboboxModel> model_;
};
TEST_F(CountryComboboxModelTest, DefaultCountryCode) {
« no previous file with comments | « chrome/browser/ui/autofill/chrome_autofill_client.cc ('k') | chrome/browser/ui/autofill/credit_card_scanner_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698