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

Unified Diff: ios/chrome/browser/signin/fake_signin_manager_builder.h

Issue 1861593005: Convert //ios 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: ios/chrome/browser/signin/fake_signin_manager_builder.h
diff --git a/ios/chrome/browser/signin/fake_signin_manager_builder.h b/ios/chrome/browser/signin/fake_signin_manager_builder.h
index f752597e1cf7dff039afb5e24117a260c57eb771..1d06ad4624adff82b8893a3dd71c130aac60abfd 100644
--- a/ios/chrome/browser/signin/fake_signin_manager_builder.h
+++ b/ios/chrome/browser/signin/fake_signin_manager_builder.h
@@ -5,7 +5,7 @@
#ifndef IOS_CHROME_BROWSER_SIGNIN_FAKE_SIGNIN_MANAGER_H_
#define IOS_CHROME_BROWSER_SIGNIN_FAKE_SIGNIN_MANAGER_H_
-#include "base/memory/scoped_ptr.h"
+#include <memory>
namespace web {
class BrowserState;
@@ -17,7 +17,7 @@ namespace ios {
// Helper function to be used with KeyedService::SetTestingFactory().
// The returned instance is initialized.
-scoped_ptr<KeyedService> BuildFakeSigninManager(
+std::unique_ptr<KeyedService> BuildFakeSigninManager(
web::BrowserState* browser_state);
} // namespace ios

Powered by Google App Engine
This is Rietveld 408576698