update_service_internal_impl_qualifying.h 733 B

1234567891011121314151617181920212223
  1. // Copyright 2021 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. #ifndef CHROME_UPDATER_UPDATE_SERVICE_INTERNAL_IMPL_QUALIFYING_H_
  5. #define CHROME_UPDATER_UPDATE_SERVICE_INTERNAL_IMPL_QUALIFYING_H_
  6. #include "base/memory/scoped_refptr.h"
  7. #include "chrome/updater/update_service_internal.h"
  8. namespace updater {
  9. class Configurator;
  10. class LocalPrefs;
  11. class UpdateServiceInternal;
  12. scoped_refptr<UpdateServiceInternal> MakeQualifyingUpdateServiceInternal(
  13. scoped_refptr<Configurator> config,
  14. scoped_refptr<LocalPrefs> local_prefs);
  15. } // namespace updater
  16. #endif // CHROME_UPDATER_UPDATE_SERVICE_INTERNAL_IMPL_QUALIFYING_H_