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

Side by Side Diff: ios/chrome/browser/undo/bookmark_undo_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/undo/bookmark_undo_service_factory.h" 5 #include "ios/chrome/browser/undo/bookmark_undo_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 "components/keyed_service/ios/browser_state_dependency_manager.h" 9 #include "components/keyed_service/ios/browser_state_dependency_manager.h"
9 #include "components/undo/bookmark_undo_service.h" 10 #include "components/undo/bookmark_undo_service.h"
10 #include "ios/chrome/browser/browser_state/chrome_browser_state.h" 11 #include "ios/chrome/browser/browser_state/chrome_browser_state.h"
11 12
12 namespace ios { 13 namespace ios {
13 14
14 // static 15 // static
15 BookmarkUndoService* BookmarkUndoServiceFactory::GetForBrowserState( 16 BookmarkUndoService* BookmarkUndoServiceFactory::GetForBrowserState(
16 ios::ChromeBrowserState* browser_state) { 17 ios::ChromeBrowserState* browser_state) {
(...skipping 15 matching lines...) Expand all
32 33
33 BookmarkUndoServiceFactory::BookmarkUndoServiceFactory() 34 BookmarkUndoServiceFactory::BookmarkUndoServiceFactory()
34 : BrowserStateKeyedServiceFactory( 35 : BrowserStateKeyedServiceFactory(
35 "BookmarkUndoService", 36 "BookmarkUndoService",
36 BrowserStateDependencyManager::GetInstance()) { 37 BrowserStateDependencyManager::GetInstance()) {
37 } 38 }
38 39
39 BookmarkUndoServiceFactory::~BookmarkUndoServiceFactory() { 40 BookmarkUndoServiceFactory::~BookmarkUndoServiceFactory() {
40 } 41 }
41 42
42 scoped_ptr<KeyedService> BookmarkUndoServiceFactory::BuildServiceInstanceFor( 43 std::unique_ptr<KeyedService>
44 BookmarkUndoServiceFactory::BuildServiceInstanceFor(
43 web::BrowserState* context) const { 45 web::BrowserState* context) const {
44 return make_scoped_ptr(new BookmarkUndoService); 46 return base::WrapUnique(new BookmarkUndoService);
45 } 47 }
46 48
47 } // namespace ios 49 } // namespace ios
OLDNEW
« no previous file with comments | « ios/chrome/browser/undo/bookmark_undo_service_factory.h ('k') | ios/chrome/browser/updatable_config/updatable_config_base.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698