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

Unified Diff: ui/app_list/demo/app_list_demo_views.cc

Issue 1868363002: Replace scoped_ptr with std::unique_ptr in //ui (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@scopedptrcc
Patch Set: scopedptrui: rebase-make_scoped_ptr 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
« no previous file with comments | « ui/app_list/cocoa/test/apps_grid_controller_test_helper.h ('k') | ui/app_list/folder_image_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/app_list/demo/app_list_demo_views.cc
diff --git a/ui/app_list/demo/app_list_demo_views.cc b/ui/app_list/demo/app_list_demo_views.cc
index f18448018ac88b6658fd621be5943c00a9684743..68399f1e4f714d670ea4f7bb1513257bb23ffbed 100644
--- a/ui/app_list/demo/app_list_demo_views.cc
+++ b/ui/app_list/demo/app_list_demo_views.cc
@@ -4,10 +4,11 @@
#include <stddef.h>
+#include <memory>
+
#include "base/bind.h"
#include "base/command_line.h"
#include "base/macros.h"
-#include "base/memory/scoped_ptr.h"
#include "base/run_loop.h"
#include "build/build_config.h"
#include "content/public/browser/web_contents.h"
@@ -50,7 +51,7 @@ class DemoAppListViewDelegate : public app_list::test::AppListTestViewDelegate {
private:
app_list::AppListView* view_; // Weak. Owns this.
content::BrowserContext* browser_context_;
- scoped_ptr<content::WebContents> web_contents_;
+ std::unique_ptr<content::WebContents> web_contents_;
DISALLOW_COPY_AND_ASSIGN(DemoAppListViewDelegate);
};
« no previous file with comments | « ui/app_list/cocoa/test/apps_grid_controller_test_helper.h ('k') | ui/app_list/folder_image_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698