chromium/chrome/browser/commerce/product_specifications/product_specifications_service_factory.cc

// Copyright 2024 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/commerce/product_specifications/product_specifications_service_factory.h"

#include "base/task/task_traits.h"
#include "base/task/thread_pool.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/sync/data_type_store_service_factory.h"
#include "chrome/common/channel_info.h"
#include "components/commerce/core/commerce_feature_list.h"
#include "components/commerce/core/product_specifications/product_specifications_service.h"
#include "components/commerce/core/product_specifications/product_specifications_sync_bridge.h"
#include "components/sync/base/report_unrecoverable_error.h"
#include "components/sync/model/client_tag_based_data_type_processor.h"
#include "components/sync/model/data_type_store_service.h"

namespace {

std::unique_ptr<syncer::ClientTagBasedDataTypeProcessor>
CreateChangeProcessor() {}

}  // namespace

namespace commerce {

// static
commerce::ProductSpecificationsService*
ProductSpecificationsServiceFactory::GetForBrowserContext(
    content::BrowserContext* context) {}

// static
ProductSpecificationsServiceFactory*
ProductSpecificationsServiceFactory::GetInstance() {}

ProductSpecificationsServiceFactory::ProductSpecificationsServiceFactory()
    :{}

ProductSpecificationsServiceFactory::~ProductSpecificationsServiceFactory() =
    default;

std::unique_ptr<KeyedService>
ProductSpecificationsServiceFactory::BuildServiceInstanceForBrowserContext(
    content::BrowserContext* context) const {}

}  // namespace commerce