chromium/components/keyed_service/core/refcounted_keyed_service.cc

// Copyright 2014 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "components/keyed_service/core/refcounted_keyed_service.h"
#include "base/task/sequenced_task_runner.h"

#include <utility>

namespace impl {

// static
void RefcountedKeyedServiceTraits::Destruct(const RefcountedKeyedService* obj) {}

}  // namespace impl

RefcountedKeyedService::RefcountedKeyedService() :{}

RefcountedKeyedService::RefcountedKeyedService(
    scoped_refptr<base::SequencedTaskRunner> task_runner)
    :{}

RefcountedKeyedService::~RefcountedKeyedService() = default;