chromium/chrome/updater/app/app_update.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/app/app_update.h"

#include "base/functional/bind.h"
#include "base/logging.h"
#include "base/memory/scoped_refptr.h"
#include "chrome/updater/app/app.h"
#include "chrome/updater/constants.h"
#include "chrome/updater/lock.h"
#include "chrome/updater/setup.h"
#include "chrome/updater/util/util.h"

namespace updater {

class AppUpdate : public App {};

int AppUpdate::Initialize() {}

void AppUpdate::FirstTaskRun() {}

void AppUpdate::SetupDone(int result) {}

scoped_refptr<App> MakeAppUpdate() {}

}  // namespace updater