#include "chrome/browser/profiles/batch_upload/batch_upload_service_factory.h"
#include "base/feature_list.h"
#include "chrome/browser/profiles/batch_upload/batch_upload_service.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/profiles/profile_selections.h"
#include "chrome/browser/ui/profiles/batch_upload_ui_delegate.h"
#include "components/signin/public/base/signin_switches.h"
namespace {
ProfileSelections CreateBatchUploadProfileSelections() { … }
}
BatchUploadServiceFactory::BatchUploadServiceFactory()
: … { … }
BatchUploadServiceFactory::~BatchUploadServiceFactory() = default;
BatchUploadService* BatchUploadServiceFactory::GetForProfile(Profile* profile) { … }
BatchUploadServiceFactory* BatchUploadServiceFactory::GetInstance() { … }
std::unique_ptr<KeyedService>
BatchUploadServiceFactory::BuildServiceInstanceForBrowserContext(
content::BrowserContext* context) const { … }