| 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/bookmarks/bookmark_model_factory.h" | 5 #include "ios/chrome/browser/bookmarks/bookmark_model_factory.h" |
| 6 | 6 |
| 7 #include <utility> | 7 #include <utility> |
| 8 | 8 |
| 9 #include "base/memory/singleton.h" | 9 #include "base/memory/singleton.h" |
| 10 #include "components/bookmarks/browser/bookmark_model.h" | 10 #include "components/bookmarks/browser/bookmark_model.h" |
| 11 #include "components/bookmarks/browser/bookmark_utils.h" | 11 #include "components/bookmarks/browser/bookmark_utils.h" |
| 12 #include "components/bookmarks/browser/startup_task_runner_service.h" | 12 #include "components/bookmarks/browser/startup_task_runner_service.h" |
| 13 #include "components/keyed_service/ios/browser_state_dependency_manager.h" | 13 #include "components/keyed_service/ios/browser_state_dependency_manager.h" |
| 14 #include "components/prefs/pref_service.h" | 14 #include "components/prefs/pref_service.h" |
| 15 #include "components/undo/bookmark_undo_service.h" | 15 #include "components/undo/bookmark_undo_service.h" |
| 16 #include "ios/chrome/browser/bookmarks/bookmark_client_impl.h" | 16 #include "ios/chrome/browser/bookmarks/bookmark_client_impl.h" |
| 17 #include "ios/chrome/browser/bookmarks/startup_task_runner_service_factory.h" | 17 #include "ios/chrome/browser/bookmarks/startup_task_runner_service_factory.h" |
| 18 #include "ios/chrome/browser/browser_state/browser_state_otr_helper.h" | 18 #include "ios/chrome/browser/browser_state/browser_state_otr_helper.h" |
| 19 #include "ios/chrome/browser/browser_state/chrome_browser_state.h" |
| 19 #include "ios/chrome/browser/history/history_service_factory.h" | 20 #include "ios/chrome/browser/history/history_service_factory.h" |
| 20 #include "ios/chrome/browser/pref_names.h" | 21 #include "ios/chrome/browser/pref_names.h" |
| 21 #include "ios/chrome/browser/undo/bookmark_undo_service_factory.h" | 22 #include "ios/chrome/browser/undo/bookmark_undo_service_factory.h" |
| 22 #include "ios/public/provider/chrome/browser/browser_state/chrome_browser_state.
h" | |
| 23 #include "ios/web/public/web_thread.h" | 23 #include "ios/web/public/web_thread.h" |
| 24 | 24 |
| 25 namespace ios { | 25 namespace ios { |
| 26 | 26 |
| 27 // static | 27 // static |
| 28 bookmarks::BookmarkModel* BookmarkModelFactory::GetForBrowserState( | 28 bookmarks::BookmarkModel* BookmarkModelFactory::GetForBrowserState( |
| 29 ios::ChromeBrowserState* browser_state) { | 29 ios::ChromeBrowserState* browser_state) { |
| 30 return static_cast<bookmarks::BookmarkModel*>( | 30 return static_cast<bookmarks::BookmarkModel*>( |
| 31 GetInstance()->GetServiceForBrowserState(browser_state, true)); | 31 GetInstance()->GetServiceForBrowserState(browser_state, true)); |
| 32 } | 32 } |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 web::BrowserState* BookmarkModelFactory::GetBrowserStateToUse( | 80 web::BrowserState* BookmarkModelFactory::GetBrowserStateToUse( |
| 81 web::BrowserState* context) const { | 81 web::BrowserState* context) const { |
| 82 return GetBrowserStateRedirectedInIncognito(context); | 82 return GetBrowserStateRedirectedInIncognito(context); |
| 83 } | 83 } |
| 84 | 84 |
| 85 bool BookmarkModelFactory::ServiceIsNULLWhileTesting() const { | 85 bool BookmarkModelFactory::ServiceIsNULLWhileTesting() const { |
| 86 return true; | 86 return true; |
| 87 } | 87 } |
| 88 | 88 |
| 89 } // namespace ios | 89 } // namespace ios |
| OLD | NEW |