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

#include <string>
#include <utility>

#include "base/functional/bind.h"
#include "base/functional/callback.h"
#include "base/run_loop.h"
#include "base/threading/thread_restrictions.h"
#include "chrome/updater/constants.h"
#include "chrome/updater/updater_scope.h"
#include "third_party/abseil-cpp/absl/cleanup/cleanup.h"

namespace updater {

App::App() = default;
App::~App() = default;

int App::Initialize() {}

int App::Run() {}

int App::RunTasks() {}

void App::Shutdown(int exit_code) {}

UpdaterScope App::updater_scope() const {}

}  // namespace updater