| Index: chrome/browser/chromeos/policy/enterprise_install_attributes.cc
|
| diff --git a/chrome/browser/chromeos/policy/enterprise_install_attributes.cc b/chrome/browser/chromeos/policy/enterprise_install_attributes.cc
|
| index 46006b850f05b1a468445df1bfb66914e4881dc9..e12f246d9b4344fc0255651a4a1b544b145e720b 100644
|
| --- a/chrome/browser/chromeos/policy/enterprise_install_attributes.cc
|
| +++ b/chrome/browser/chromeos/policy/enterprise_install_attributes.cc
|
| @@ -303,7 +303,6 @@ DeviceMode EnterpriseInstallAttributes::GetMode() {
|
| // that all changes to the constants are reflected there as well.
|
| const char EnterpriseInstallAttributes::kConsumerDeviceMode[] = "consumer";
|
| const char EnterpriseInstallAttributes::kEnterpriseDeviceMode[] = "enterprise";
|
| -const char EnterpriseInstallAttributes::kRetailKioskDeviceMode[] = "kiosk";
|
| const char EnterpriseInstallAttributes::kConsumerKioskDeviceMode[] =
|
| "consumer_kiosk";
|
| const char EnterpriseInstallAttributes::kUnknownDeviceMode[] = "unknown";
|
| @@ -327,8 +326,6 @@ std::string EnterpriseInstallAttributes::GetDeviceModeString(DeviceMode mode) {
|
| return EnterpriseInstallAttributes::kConsumerDeviceMode;
|
| case DEVICE_MODE_ENTERPRISE:
|
| return EnterpriseInstallAttributes::kEnterpriseDeviceMode;
|
| - case DEVICE_MODE_RETAIL_KIOSK:
|
| - return EnterpriseInstallAttributes::kRetailKioskDeviceMode;
|
| case DEVICE_MODE_CONSUMER_KIOSK_AUTOLAUNCH:
|
| return EnterpriseInstallAttributes::kConsumerKioskDeviceMode;
|
| case DEVICE_MODE_PENDING:
|
| @@ -345,8 +342,6 @@ DeviceMode EnterpriseInstallAttributes::GetDeviceModeFromString(
|
| return DEVICE_MODE_CONSUMER;
|
| else if (mode == EnterpriseInstallAttributes::kEnterpriseDeviceMode)
|
| return DEVICE_MODE_ENTERPRISE;
|
| - else if (mode == EnterpriseInstallAttributes::kRetailKioskDeviceMode)
|
| - return DEVICE_MODE_RETAIL_KIOSK;
|
| else if (mode == EnterpriseInstallAttributes::kConsumerKioskDeviceMode)
|
| return DEVICE_MODE_CONSUMER_KIOSK_AUTOLAUNCH;
|
| NOTREACHED() << "Unknown device mode string: " << mode;
|
|
|