| 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) {
|
|
|