| // Copyright 2018 The Chromium Authors |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| #include "chrome/browser/sync/bookmark_sync_service_factory.h" |
| |
| #include "chrome/browser/profiles/profile.h" |
| #include "chrome/browser/undo/bookmark_undo_service_factory.h" |
| #include "components/sync_bookmarks/bookmark_sync_service.h" |
| |
| // static |
| sync_bookmarks::BookmarkSyncService* BookmarkSyncServiceFactory::GetForProfile( |
| Profile* profile) { |
| return static_cast<sync_bookmarks::BookmarkSyncService*>( |
| GetInstance()->GetServiceForBrowserContext(profile, /*create=*/true)); |
| } |
| |
| // static |
| BookmarkSyncServiceFactory* BookmarkSyncServiceFactory::GetInstance() { |
| static base::NoDestructor<BookmarkSyncServiceFactory> instance; |
| return instance.get(); |
| } |
| |
| BookmarkSyncServiceFactory::BookmarkSyncServiceFactory() |
| : ProfileKeyedServiceFactory( |
| "BookmarkSyncServiceFactory", |
| ProfileSelections::Builder() |
| .WithRegular(ProfileSelection::kRedirectedToOriginal) |
| // TODO(crbug.com/1418376): Check if this service is needed in |
| // Guest mode. |
| .WithGuest(ProfileSelection::kRedirectedToOriginal) |
| .Build()) { |
| DependsOn(BookmarkUndoServiceFactory::GetInstance()); |
| } |
| |
| BookmarkSyncServiceFactory::~BookmarkSyncServiceFactory() = default; |
| |
| KeyedService* BookmarkSyncServiceFactory::BuildServiceInstanceFor( |
| content::BrowserContext* context) const { |
| Profile* profile = Profile::FromBrowserContext(context); |
| return new sync_bookmarks::BookmarkSyncService( |
| BookmarkUndoServiceFactory::GetForProfileIfExists(profile), |
| /*wipe_model_on_stopping_sync_with_clear_data=*/false); |
| } |