Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5627)

Unified Diff: chrome/browser/ui/views/bookmarks/bookmark_editor_view_unittest.cc

Issue 1865213004: Convert //chrome/browser/ui from scoped_ptr to std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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.

Powered by Google App Engine
This is Rietveld 408576698