#ifndef CHROME_BROWSER_CHROMEOS_POLICY_STUB_ENTERPRISE_INSTALL_ATTRIBUTES_H_
#define CHROME_BROWSER_CHROMEOS_POLICY_STUB_ENTERPRISE_INSTALL_ATTRIBUTES_H_
#include <string>
#include "base/basictypes.h"
#include "chrome/browser/chromeos/policy/enterprise_install_attributes.h"
#include "components/policy/core/common/cloud/cloud_policy_constants.h"
namespace policy {
class StubEnterpriseInstallAttributes : public EnterpriseInstallAttributes {
public:
StubEnterpriseInstallAttributes();
void SetDomain(const std::string& domain);
void SetRegistrationUser(const std::string& user);
void SetDeviceId(const std::string& id);
void SetMode(DeviceMode mode);
private:
DISALLOW_COPY_AND_ASSIGN(StubEnterpriseInstallAttributes);
};
}
#endif