diff options
Diffstat (limited to 'chrome/browser/policy/enterprise_install_attributes.cc')
-rw-r--r-- | chrome/browser/policy/enterprise_install_attributes.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/chrome/browser/policy/enterprise_install_attributes.cc b/chrome/browser/policy/enterprise_install_attributes.cc index 248f625..29596ed 100644 --- a/chrome/browser/policy/enterprise_install_attributes.cc +++ b/chrome/browser/policy/enterprise_install_attributes.cc @@ -72,7 +72,7 @@ bool ReadMapKey(const std::map<std::string, std::string>& map, } // namespace // Cache file name. -const FilePath::CharType EnterpriseInstallAttributes::kCacheFilePath[] = +const base::FilePath::CharType EnterpriseInstallAttributes::kCacheFilePath[] = FILE_PATH_LITERAL("/var/run/lockbox/install_attributes.pb"); EnterpriseInstallAttributes::EnterpriseInstallAttributes( @@ -81,7 +81,8 @@ EnterpriseInstallAttributes::EnterpriseInstallAttributes( device_locked_(false), registration_mode_(DEVICE_MODE_PENDING) {} -void EnterpriseInstallAttributes::ReadCacheFile(const FilePath& cache_file) { +void EnterpriseInstallAttributes::ReadCacheFile( + const base::FilePath& cache_file) { if (device_locked_ || !file_util::PathExists(cache_file)) return; |