#include "chrome/updater/update_service_internal_impl_qualifying.h"
#include <string>
#include <utility>
#include <vector>
#include "base/functional/bind.h"
#include "base/functional/callback.h"
#include "base/functional/callback_helpers.h"
#include "base/logging.h"
#include "base/memory/scoped_refptr.h"
#include "base/sequence_checker.h"
#include "base/strings/string_util.h"
#include "base/task/thread_pool.h"
#include "base/version.h"
#include "chrome/updater/check_for_updates_task.h"
#include "chrome/updater/configurator.h"
#include "chrome/updater/persisted_data.h"
#include "chrome/updater/prefs.h"
#include "chrome/updater/registration_data.h"
#include "chrome/updater/update_service_impl.h"
#include "chrome/updater/update_service_internal.h"
#include "components/prefs/pref_service.h"
namespace updater {
namespace {
constexpr char kQualificationInitialVersion[] = …;
class UpdateServiceInternalQualifyingImpl : public UpdateServiceInternal { … };
}
scoped_refptr<UpdateServiceInternal> MakeQualifyingUpdateServiceInternal(
scoped_refptr<Configurator> config,
scoped_refptr<LocalPrefs> local_prefs) { … }
}