| 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 5e0db82d6ba15beb0f8f96ff462718f8a4085ff9..a2d4d1e32c580f17089dbaff384618dfda80df9d 100644
|
| --- a/chrome/browser/chromeos/policy/enterprise_install_attributes.cc
|
| +++ b/chrome/browser/chromeos/policy/enterprise_install_attributes.cc
|
| @@ -324,7 +324,7 @@
|
| callback.Run(LOCK_SUCCESS);
|
| }
|
|
|
| -bool EnterpriseInstallAttributes::IsEnterpriseDevice() const {
|
| +bool EnterpriseInstallAttributes::IsEnterpriseDevice() {
|
| return device_locked_ && !registration_user_.empty();
|
| }
|
|
|
| @@ -340,7 +340,7 @@
|
| return registration_user_;
|
| }
|
|
|
| -std::string EnterpriseInstallAttributes::GetDomain() const {
|
| +std::string EnterpriseInstallAttributes::GetDomain() {
|
| if (!IsEnterpriseDevice())
|
| return std::string();
|
|
|
|
|