chromium/chrome/updater/update_service_internal_impl.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_internal_impl.h"

#include <string>
#include <vector>

#include "base/functional/bind.h"
#include "base/functional/callback.h"
#include "base/logging.h"
#include "chrome/updater/constants.h"
#include "chrome/updater/service_proxy_factory.h"
#include "chrome/updater/update_service_impl.h"
#include "chrome/updater/updater_scope.h"
#include "chrome/updater/util/util.h"

namespace updater {

UpdateServiceInternalImpl::UpdateServiceInternalImpl() = default;

void UpdateServiceInternalImpl::Run(base::OnceClosure callback) {}

void UpdateServiceInternalImpl::Hello(base::OnceClosure callback) {}

UpdateServiceInternalImpl::~UpdateServiceInternalImpl() {}

}  // namespace updater