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

Unified Diff: chrome/browser/ui/ash/multi_user/multi_user_context_menu.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/ash/multi_user/multi_user_context_menu.cc
diff --git a/chrome/browser/ui/ash/multi_user/multi_user_context_menu.cc b/chrome/browser/ui/ash/multi_user/multi_user_context_menu.cc
index 2c41f3a6d9c55c5737c27f0f776cea07016be046..110a8cca17bcdbf097e6715b9856a9b5fea442ca 100644
--- a/chrome/browser/ui/ash/multi_user/multi_user_context_menu.cc
+++ b/chrome/browser/ui/ash/multi_user/multi_user_context_menu.cc
@@ -6,8 +6,9 @@
#include "ui/base/models/menu_model.h"
-scoped_ptr<ui::MenuModel> CreateMultiUserContextMenu(aura::Window* window) {
- scoped_ptr<ui::MenuModel> menu_model;
+std::unique_ptr<ui::MenuModel> CreateMultiUserContextMenu(
+ aura::Window* window) {
+ std::unique_ptr<ui::MenuModel> menu_model;
return menu_model;
}

Powered by Google App Engine
This is Rietveld 408576698