| Index: components/undo/bookmark_undo_service_test.cc
|
| diff --git a/components/undo/bookmark_undo_service_test.cc b/components/undo/bookmark_undo_service_test.cc
|
| index 3716845eecd17d4e5f3e2bf4310fd7ad8848b131..411f51fe4de5e1ff159c4cc7547761330536ebc1 100644
|
| --- a/components/undo/bookmark_undo_service_test.cc
|
| +++ b/components/undo/bookmark_undo_service_test.cc
|
| @@ -6,6 +6,8 @@
|
|
|
| #include <stddef.h>
|
|
|
| +#include <memory>
|
| +
|
| #include "base/macros.h"
|
| #include "base/strings/utf_string_conversions.h"
|
| #include "components/bookmarks/browser/bookmark_model.h"
|
| @@ -30,8 +32,8 @@ class BookmarkUndoServiceTest : public testing::Test {
|
| BookmarkUndoService* GetUndoService();
|
|
|
| private:
|
| - scoped_ptr<bookmarks::BookmarkModel> bookmark_model_;
|
| - scoped_ptr<BookmarkUndoService> bookmark_undo_service_;
|
| + std::unique_ptr<bookmarks::BookmarkModel> bookmark_model_;
|
| + std::unique_ptr<BookmarkUndoService> bookmark_undo_service_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(BookmarkUndoServiceTest);
|
| };
|
|
|