#ifndef CHROME_INSTALLER_SETUP_SETUP_INSTALL_DETAILS_H_
#define CHROME_INSTALLER_SETUP_SETUP_INSTALL_DETAILS_H_
#include <memory>
namespace base {
class CommandLine;
}
namespace install_static {
class PrimaryInstallDetails;
}
namespace installer {
class InitialPreferences;
}
void InitializeInstallDetails(
const base::CommandLine& command_line,
const installer::InitialPreferences& initial_preferences);
std::unique_ptr<install_static::PrimaryInstallDetails> MakeInstallDetails(
const base::CommandLine& command_line,
const installer::InitialPreferences& initial_preferences);
#endif