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

Side by Side Diff: ios/chrome/browser/bookmarks/startup_task_runner_service_factory.cc

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 unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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/bookmarks/startup_task_runner_service_factory.h" 5 #include "ios/chrome/browser/bookmarks/startup_task_runner_service_factory.h"
6 6
7 #include "base/memory/ptr_util.h"
7 #include "base/memory/singleton.h" 8 #include "base/memory/singleton.h"
8 #include "base/sequenced_task_runner.h" 9 #include "base/sequenced_task_runner.h"
9 #include "components/bookmarks/browser/startup_task_runner_service.h" 10 #include "components/bookmarks/browser/startup_task_runner_service.h"
10 #include "components/keyed_service/ios/browser_state_dependency_manager.h" 11 #include "components/keyed_service/ios/browser_state_dependency_manager.h"
11 #include "ios/chrome/browser/browser_state/chrome_browser_state.h" 12 #include "ios/chrome/browser/browser_state/chrome_browser_state.h"
12 13
13 namespace ios { 14 namespace ios {
14 15
15 // static 16 // static
16 bookmarks::StartupTaskRunnerService* 17 bookmarks::StartupTaskRunnerService*
(...skipping 11 matching lines...) Expand all
28 29
29 StartupTaskRunnerServiceFactory::StartupTaskRunnerServiceFactory() 30 StartupTaskRunnerServiceFactory::StartupTaskRunnerServiceFactory()
30 : BrowserStateKeyedServiceFactory( 31 : BrowserStateKeyedServiceFactory(
31 "StartupTaskRunnerService", 32 "StartupTaskRunnerService",
32 BrowserStateDependencyManager::GetInstance()) { 33 BrowserStateDependencyManager::GetInstance()) {
33 } 34 }
34 35
35 StartupTaskRunnerServiceFactory::~StartupTaskRunnerServiceFactory() { 36 StartupTaskRunnerServiceFactory::~StartupTaskRunnerServiceFactory() {
36 } 37 }
37 38
38 scoped_ptr<KeyedService> 39 std::unique_ptr<KeyedService>
39 StartupTaskRunnerServiceFactory::BuildServiceInstanceFor( 40 StartupTaskRunnerServiceFactory::BuildServiceInstanceFor(
40 web::BrowserState* context) const { 41 web::BrowserState* context) const {
41 ios::ChromeBrowserState* browser_state = 42 ios::ChromeBrowserState* browser_state =
42 ios::ChromeBrowserState::FromBrowserState(context); 43 ios::ChromeBrowserState::FromBrowserState(context);
43 return make_scoped_ptr(new bookmarks::StartupTaskRunnerService( 44 return base::WrapUnique(new bookmarks::StartupTaskRunnerService(
44 browser_state->GetIOTaskRunner())); 45 browser_state->GetIOTaskRunner()));
45 } 46 }
46 47
47 } // namespace ios 48 } // namespace ios
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698