| OLD | NEW |
| 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/singleton.h" | 7 #include "base/memory/singleton.h" |
| 8 #include "components/keyed_service/ios/browser_state_dependency_manager.h" | 8 #include "components/keyed_service/ios/browser_state_dependency_manager.h" |
| 9 #include "components/undo/bookmark_undo_service.h" | 9 #include "components/undo/bookmark_undo_service.h" |
| 10 #include "ios/public/provider/chrome/browser/browser_state/chrome_browser_state.
h" | 10 #include "ios/chrome/browser/browser_state/chrome_browser_state.h" |
| 11 | 11 |
| 12 namespace ios { | 12 namespace ios { |
| 13 | 13 |
| 14 // static | 14 // static |
| 15 BookmarkUndoService* BookmarkUndoServiceFactory::GetForBrowserState( | 15 BookmarkUndoService* BookmarkUndoServiceFactory::GetForBrowserState( |
| 16 ios::ChromeBrowserState* browser_state) { | 16 ios::ChromeBrowserState* browser_state) { |
| 17 return static_cast<BookmarkUndoService*>( | 17 return static_cast<BookmarkUndoService*>( |
| 18 GetInstance()->GetServiceForBrowserState(browser_state, true)); | 18 GetInstance()->GetServiceForBrowserState(browser_state, true)); |
| 19 } | 19 } |
| 20 | 20 |
| (...skipping 17 matching lines...) Expand all Loading... |
| 38 | 38 |
| 39 BookmarkUndoServiceFactory::~BookmarkUndoServiceFactory() { | 39 BookmarkUndoServiceFactory::~BookmarkUndoServiceFactory() { |
| 40 } | 40 } |
| 41 | 41 |
| 42 scoped_ptr<KeyedService> BookmarkUndoServiceFactory::BuildServiceInstanceFor( | 42 scoped_ptr<KeyedService> BookmarkUndoServiceFactory::BuildServiceInstanceFor( |
| 43 web::BrowserState* context) const { | 43 web::BrowserState* context) const { |
| 44 return make_scoped_ptr(new BookmarkUndoService); | 44 return make_scoped_ptr(new BookmarkUndoService); |
| 45 } | 45 } |
| 46 | 46 |
| 47 } // namespace ios | 47 } // namespace ios |
| OLD | NEW |