| Index: chrome/browser/ui/views/bookmarks/bookmark_editor_view_unittest.cc
|
| diff --git a/chrome/browser/ui/views/bookmarks/bookmark_editor_view_unittest.cc b/chrome/browser/ui/views/bookmarks/bookmark_editor_view_unittest.cc
|
| index 6209164388089c03dcc674e4faa8847640a20b2f..d09cf03d1ada786710bcb300116a4a554e7b167e 100644
|
| --- a/chrome/browser/ui/views/bookmarks/bookmark_editor_view_unittest.cc
|
| +++ b/chrome/browser/ui/views/bookmarks/bookmark_editor_view_unittest.cc
|
| @@ -105,7 +105,7 @@ class BookmarkEditorViewTest : public testing::Test {
|
| content::TestBrowserThreadBundle thread_bundle_;
|
|
|
| BookmarkModel* model_;
|
| - scoped_ptr<TestingProfile> profile_;
|
| + std::unique_ptr<TestingProfile> profile_;
|
|
|
| private:
|
| // Creates the following structure:
|
| @@ -138,7 +138,7 @@ class BookmarkEditorViewTest : public testing::Test {
|
| model_->AddURL(of1, 0, ASCIIToUTF16("of1a"), GURL(test_base + "of1a"));
|
| }
|
|
|
| - scoped_ptr<BookmarkEditorView> editor_;
|
| + std::unique_ptr<BookmarkEditorView> editor_;
|
| };
|
|
|
| // Makes sure the tree model matches that of the bookmark bar model.
|
|
|