chromium/chrome/updater/update_service_impl_inactive.cc

// Copyright 2020 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/updater/update_service_impl_inactive.h"

#include <string>
#include <utility>
#include <vector>

#include "base/functional/bind.h"
#include "base/functional/callback.h"
#include "base/logging.h"
#include "base/task/sequenced_task_runner.h"
#include "base/version.h"
#include "chrome/updater/registration_data.h"
#include "chrome/updater/update_service.h"

namespace updater {

namespace {

class UpdateServiceImplInactive : public UpdateService {};

}  // namespace

scoped_refptr<UpdateService> MakeInactiveUpdateService() {}

}  // namespace updater