// 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. #include "chrome/enterprise_companion/app/app.h" #include <utility> #include "base/functional/bind.h" #include "base/run_loop.h" #include "chrome/enterprise_companion/enterprise_companion_status.h" namespace enterprise_companion { App::App() = default; App::~App() = default; EnterpriseCompanionStatus App::Run() { … } void App::Shutdown(const EnterpriseCompanionStatus& status) { … } } // namespace enterprise_companion