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

Unified Diff: ash/wm/cursor_manager_chromeos.cc

Issue 1867223004: Convert //ash from scoped_ptr to std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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: ash/wm/cursor_manager_chromeos.cc
diff --git a/ash/wm/cursor_manager_chromeos.cc b/ash/wm/cursor_manager_chromeos.cc
index 9835a083c1b33a29bbc2b22bcbe5ac350786b27c..5dd91a91489ee422e1fb550b0624e37959ad05e6 100644
--- a/ash/wm/cursor_manager_chromeos.cc
+++ b/ash/wm/cursor_manager_chromeos.cc
@@ -14,7 +14,8 @@
namespace ash {
-CursorManager::CursorManager(scoped_ptr<::wm::NativeCursorManager> delegate)
+CursorManager::CursorManager(
+ std::unique_ptr<::wm::NativeCursorManager> delegate)
: ::wm::CursorManager(std::move(delegate)) {}
CursorManager::~CursorManager() {

Powered by Google App Engine
This is Rietveld 408576698