// 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_wake.h" #include "base/functional/bind.h" #include "build/build_config.h" #include "chrome/updater/app/app.h" #include "chrome/updater/constants.h" #include "chrome/updater/service_proxy_factory.h" #include "chrome/updater/update_service_internal.h" namespace updater { // AppWake is a simple client which dials the same-versioned server via RPC. // This is done via the UpdateServiceInternal interface. class AppWake : public App { … }; void AppWake::FirstTaskRun() { … } scoped_refptr<App> MakeAppWake() { … } } // namespace updater