#ifndef CHROME_UPDATER_TEST_INTEGRATION_TEST_COMMANDS_H_
#define CHROME_UPDATER_TEST_INTEGRATION_TEST_COMMANDS_H_
#include <optional>
#include <string>
#include "base/memory/ref_counted.h"
#include "base/values.h"
#include "build/build_config.h"
#include "chrome/updater/test/integration_tests_impl.h"
#include "chrome/updater/test/test_scope.h"
#include "chrome/updater/update_service.h"
class GURL;
namespace base {
class FilePath;
class Version;
}
namespace updater {
struct RegistrationRequest;
}
namespace updater::test {
class ScopedServer;
class IntegrationTestCommands
: public base::RefCountedThreadSafe<IntegrationTestCommands> { … };
scoped_refptr<IntegrationTestCommands> CreateIntegrationTestCommands();
scoped_refptr<IntegrationTestCommands> CreateIntegrationTestCommandsUser(
UpdaterScope scope = GetUpdaterScopeForTesting());
scoped_refptr<IntegrationTestCommands> CreateIntegrationTestCommandsSystem(
UpdaterScope scope = GetUpdaterScopeForTesting());
}
#endif