| Index: chrome/browser/ui/autofill/autofill_popup_layout_model_unittest.cc
|
| diff --git a/chrome/browser/ui/autofill/autofill_popup_layout_model_unittest.cc b/chrome/browser/ui/autofill/autofill_popup_layout_model_unittest.cc
|
| index 0858bd48e8fc9c4f4042664c04c7a15ded3698a7..0fa1bfcc97f224f466a3f2c864d168b6f5869bfd 100644
|
| --- a/chrome/browser/ui/autofill/autofill_popup_layout_model_unittest.cc
|
| +++ b/chrome/browser/ui/autofill/autofill_popup_layout_model_unittest.cc
|
| @@ -6,7 +6,8 @@
|
|
|
| #include <stddef.h>
|
|
|
| -#include "base/memory/scoped_ptr.h"
|
| +#include <memory>
|
| +
|
| #include "chrome/browser/ui/autofill/autofill_popup_view.h"
|
| #include "chrome/browser/ui/autofill/autofill_popup_view_delegate.h"
|
| #include "chrome/browser/ui/autofill/popup_constants.h"
|
| @@ -73,8 +74,8 @@ class AutofillPopupLayoutModelTest : public ChromeRenderViewHostTestHarness {
|
| AutofillPopupLayoutModel* layout_model() { return layout_model_.get(); }
|
|
|
| private:
|
| - scoped_ptr<TestAutofillPopupViewDelegate> delegate_;
|
| - scoped_ptr<AutofillPopupLayoutModel> layout_model_;
|
| + std::unique_ptr<TestAutofillPopupViewDelegate> delegate_;
|
| + std::unique_ptr<AutofillPopupLayoutModel> layout_model_;
|
| };
|
|
|
| } // namespace
|
|
|