chromium/chrome/updater/update_service_impl.h

// 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.

#ifndef CHROME_UPDATER_UPDATE_SERVICE_IMPL_H_
#define CHROME_UPDATER_UPDATE_SERVICE_IMPL_H_

#include <string>
#include <vector>

#include "base/functional/callback_forward.h"
#include "base/memory/scoped_refptr.h"
#include "base/sequence_checker.h"
#include "chrome/updater/update_service.h"
#include "chrome/updater/update_service_impl_impl.h"

namespace base {
class FilePath;
class Version;
}  // namespace base

namespace updater {
class Configurator;
struct RegistrationRequest;

// All functions and callbacks must be called on the same sequence.
class UpdateServiceImpl : public UpdateService {};

}  // namespace updater

#endif  // CHROME_UPDATER_UPDATE_SERVICE_IMPL_H_