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

Side by Side Diff: ios/chrome/browser/sync/sync_setup_service_factory.cc

Issue 2256193002: Re-write many calls to WrapUnique() with MakeUnique() (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 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 unified diff | Download patch
OLDNEW
1 // Copyright 2012 The Chromium Authors. All rights reserved. 1 // Copyright 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "ios/chrome/browser/sync/sync_setup_service_factory.h" 5 #include "ios/chrome/browser/sync/sync_setup_service_factory.h"
6 6
7 #include "base/memory/ptr_util.h" 7 #include "base/memory/ptr_util.h"
8 #include "base/memory/singleton.h" 8 #include "base/memory/singleton.h"
9 #include "components/browser_sync/browser/profile_sync_service.h" 9 #include "components/browser_sync/browser/profile_sync_service.h"
10 #include "components/keyed_service/ios/browser_state_dependency_manager.h" 10 #include "components/keyed_service/ios/browser_state_dependency_manager.h"
(...skipping 27 matching lines...) Expand all
38 DependsOn(IOSChromeProfileSyncServiceFactory::GetInstance()); 38 DependsOn(IOSChromeProfileSyncServiceFactory::GetInstance());
39 } 39 }
40 40
41 SyncSetupServiceFactory::~SyncSetupServiceFactory() { 41 SyncSetupServiceFactory::~SyncSetupServiceFactory() {
42 } 42 }
43 43
44 std::unique_ptr<KeyedService> SyncSetupServiceFactory::BuildServiceInstanceFor( 44 std::unique_ptr<KeyedService> SyncSetupServiceFactory::BuildServiceInstanceFor(
45 web::BrowserState* context) const { 45 web::BrowserState* context) const {
46 ios::ChromeBrowserState* browser_state = 46 ios::ChromeBrowserState* browser_state =
47 ios::ChromeBrowserState::FromBrowserState(context); 47 ios::ChromeBrowserState::FromBrowserState(context);
48 return base::WrapUnique(new SyncSetupService( 48 return base::MakeUnique<SyncSetupService>(
49 IOSChromeProfileSyncServiceFactory::GetForBrowserState(browser_state), 49 IOSChromeProfileSyncServiceFactory::GetForBrowserState(browser_state),
50 browser_state->GetPrefs())); 50 browser_state->GetPrefs());
51 } 51 }
OLDNEW
« no previous file with comments | « ios/chrome/browser/sync/ios_chrome_sync_client.mm ('k') | ios/chrome/browser/translate/translate_accept_languages_factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698