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

Unified Diff: chrome/browser/chromeos/policy/browser_policy_connector_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/browser_policy_connector_chromeos.h
diff --git a/chrome/browser/chromeos/policy/browser_policy_connector_chromeos.h b/chrome/browser/chromeos/policy/browser_policy_connector_chromeos.h
index 1f0b69402600ef2bc11e14e5e13ef9c9b501ebdc..12fcc98e47ea000ae6fc6bca02da73c84b04edb0 100644
--- a/chrome/browser/chromeos/policy/browser_policy_connector_chromeos.h
+++ b/chrome/browser/chromeos/policy/browser_policy_connector_chromeos.h
@@ -21,6 +21,9 @@ class PrefRegistrySimple;
class PrefService;
namespace chromeos {
+
+class InstallAttributes;
+
namespace attestation {
class AttestationFlow;
}
@@ -40,7 +43,6 @@ class DeviceCloudPolicyInitializer;
class DeviceLocalAccountPolicyService;
class DeviceManagementService;
struct EnrollmentConfig;
-class EnterpriseInstallAttributes;
class NetworkConfigurationUpdater;
class ProxyPolicyProvider;
class ServerBackedStateKeysBroker;
@@ -102,7 +104,7 @@ class BrowserPolicyConnectorChromeOS
return device_local_account_policy_service_.get();
}
- EnterpriseInstallAttributes* GetInstallAttributes() const {
+ chromeos::InstallAttributes* GetInstallAttributes() const {
return install_attributes_.get();
}
@@ -129,7 +131,7 @@ class BrowserPolicyConnectorChromeOS
// is created. RemoveInstallAttributesForTesting must be called after the test
// to free the attributes.
static void SetInstallAttributesForTesting(
- EnterpriseInstallAttributes* attributes);
+ chromeos::InstallAttributes* attributes);
static void RemoveInstallAttributesForTesting();
// Registers device refresh rate pref.
@@ -156,7 +158,7 @@ class BrowserPolicyConnectorChromeOS
// Components of the device cloud policy implementation.
std::unique_ptr<ServerBackedStateKeysBroker> state_keys_broker_;
- std::unique_ptr<EnterpriseInstallAttributes> install_attributes_;
+ std::unique_ptr<chromeos::InstallAttributes> install_attributes_;
std::unique_ptr<AffiliatedInvalidationServiceProvider>
affiliated_invalidation_service_provider_;
DeviceCloudPolicyManagerChromeOS* device_cloud_policy_manager_;

Powered by Google App Engine
This is Rietveld 408576698