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

Unified Diff: chrome/browser/chromeos/login/signin/merge_session_navigation_throttle.cc

Issue 1870793002: Convert //chrome/browser/chromeos 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/chromeos/login/signin/merge_session_navigation_throttle.cc
diff --git a/chrome/browser/chromeos/login/signin/merge_session_navigation_throttle.cc b/chrome/browser/chromeos/login/signin/merge_session_navigation_throttle.cc
index 0f7cff4d092b70fc5086066814c1326227f514f4..fa890843599df707d9afcbb4b0a464d9b5dc45a8 100644
--- a/chrome/browser/chromeos/login/signin/merge_session_navigation_throttle.cc
+++ b/chrome/browser/chromeos/login/signin/merge_session_navigation_throttle.cc
@@ -9,9 +9,9 @@
#include "content/public/browser/navigation_handle.h"
// static
-scoped_ptr<content::NavigationThrottle> MergeSessionNavigationThrottle::Create(
- content::NavigationHandle* handle) {
- return scoped_ptr<content::NavigationThrottle>(
+std::unique_ptr<content::NavigationThrottle>
+MergeSessionNavigationThrottle::Create(content::NavigationHandle* handle) {
+ return std::unique_ptr<content::NavigationThrottle>(
new MergeSessionNavigationThrottle(handle));
}

Powered by Google App Engine
This is Rietveld 408576698