chromium/chrome/browser/commerce/coupons/coupon_service_factory.cc

// Copyright 2021 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/coupons/coupon_service_factory.h"

#include "base/no_destructor.h"
#include "chrome/browser/commerce/coupons/coupon_db.h"
#include "chrome/browser/commerce/coupons/coupon_service.h"
#include "content/public/browser/storage_partition.h"

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

// static
CouponService* CouponServiceFactory::GetForProfile(Profile* profile) {}

CouponServiceFactory::CouponServiceFactory()
    :{}

CouponServiceFactory::~CouponServiceFactory() = default;

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