| Index: chrome/browser/ui/views/bookmarks/bookmark_editor_view.h
|
| diff --git a/chrome/browser/ui/views/bookmarks/bookmark_editor_view.h b/chrome/browser/ui/views/bookmarks/bookmark_editor_view.h
|
| index d93ab569a910bd33d467b4abb3b957c7f0cf58ca..a601c30969cd53001536a400e3affe6c79b51f1b 100644
|
| --- a/chrome/browser/ui/views/bookmarks/bookmark_editor_view.h
|
| +++ b/chrome/browser/ui/views/bookmarks/bookmark_editor_view.h
|
| @@ -229,13 +229,13 @@ class BookmarkEditorView : public BookmarkEditor,
|
| Profile* profile_;
|
|
|
| // Model driving the TreeView.
|
| - scoped_ptr<EditorTreeModel> tree_model_;
|
| + std::unique_ptr<EditorTreeModel> tree_model_;
|
|
|
| // Displays star folder.
|
| views::TreeView* tree_view_;
|
|
|
| // Used to create a new folder.
|
| - scoped_ptr<views::LabelButton> new_folder_button_;
|
| + std::unique_ptr<views::LabelButton> new_folder_button_;
|
|
|
| // The label for the url text field.
|
| views::Label* url_label_;
|
| @@ -256,8 +256,8 @@ class BookmarkEditorView : public BookmarkEditor,
|
| const EditDetails details_;
|
|
|
| // The context menu.
|
| - scoped_ptr<ui::SimpleMenuModel> context_menu_model_;
|
| - scoped_ptr<views::MenuRunner> context_menu_runner_;
|
| + std::unique_ptr<ui::SimpleMenuModel> context_menu_model_;
|
| + std::unique_ptr<views::MenuRunner> context_menu_runner_;
|
|
|
| // Mode used to create nodes from.
|
| bookmarks::BookmarkModel* bb_model_;
|
|
|