Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(929)

Unified Diff: chrome/browser/chromeos/policy/device_cloud_policy_store_chromeos.h

Issue 2382833002: Rename policy::EnterpriseInstallAttributes to chromeos::InstallAttributes. (Closed)
Patch Set: Add missing #includes. Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/chromeos/policy/device_cloud_policy_store_chromeos.h
diff --git a/chrome/browser/chromeos/policy/device_cloud_policy_store_chromeos.h b/chrome/browser/chromeos/policy/device_cloud_policy_store_chromeos.h
index 503175f46fe08a4a7911d8765d920af8de668046..618a8dd34c6ba4de6ad2c7512e96a4cd7a5b22a3 100644
--- a/chrome/browser/chromeos/policy/device_cloud_policy_store_chromeos.h
+++ b/chrome/browser/chromeos/policy/device_cloud_policy_store_chromeos.h
@@ -19,14 +19,16 @@ namespace base {
class SequencedTaskRunner;
}
+namespace chromeos {
+class InstallAttributes;
+}
+
namespace enterprise_management {
class PolicyFetchResponse;
}
namespace policy {
-class EnterpriseInstallAttributes;
-
// CloudPolicyStore implementation for device policy on Chrome OS. Policy is
// stored/loaded via DBus to/from session_manager.
class DeviceCloudPolicyStoreChromeOS
@@ -35,7 +37,7 @@ class DeviceCloudPolicyStoreChromeOS
public:
DeviceCloudPolicyStoreChromeOS(
chromeos::DeviceSettingsService* device_settings_service,
- EnterpriseInstallAttributes* install_attributes,
+ chromeos::InstallAttributes* install_attributes,
scoped_refptr<base::SequencedTaskRunner> background_task_runner);
~DeviceCloudPolicyStoreChromeOS() override;
@@ -73,7 +75,7 @@ class DeviceCloudPolicyStoreChromeOS
void UpdateFromService();
chromeos::DeviceSettingsService* device_settings_service_;
- EnterpriseInstallAttributes* install_attributes_;
+ chromeos::InstallAttributes* install_attributes_;
scoped_refptr<base::SequencedTaskRunner> background_task_runner_;

Powered by Google App Engine
This is Rietveld 408576698