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

Unified Diff: chrome/browser/extensions/api/enterprise_platform_keys_private/enterprise_platform_keys_private_api.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/extensions/api/enterprise_platform_keys_private/enterprise_platform_keys_private_api.h
diff --git a/chrome/browser/extensions/api/enterprise_platform_keys_private/enterprise_platform_keys_private_api.h b/chrome/browser/extensions/api/enterprise_platform_keys_private/enterprise_platform_keys_private_api.h
index 3d19ccc7aef914d0193fa87915db60ca12d74aeb..0c7d484c5339b297ae4faed1d15752b237d74455 100644
--- a/chrome/browser/extensions/api/enterprise_platform_keys_private/enterprise_platform_keys_private_api.h
+++ b/chrome/browser/extensions/api/enterprise_platform_keys_private/enterprise_platform_keys_private_api.h
@@ -27,16 +27,13 @@ class Profile;
namespace chromeos {
class CryptohomeClient;
+class InstallAttributes;
}
namespace cryptohome {
class AsyncMethodCaller;
}
-namespace policy {
-class EnterpriseInstallAttributes;
-}
-
namespace user_prefs {
class PrefRegistrySyncable;
}
@@ -72,7 +69,7 @@ class EPKPChallengeKeyBase {
chromeos::CryptohomeClient* cryptohome_client,
cryptohome::AsyncMethodCaller* async_caller,
chromeos::attestation::AttestationFlow* attestation_flow,
- policy::EnterpriseInstallAttributes* install_attributes);
+ chromeos::InstallAttributes* install_attributes);
virtual ~EPKPChallengeKeyBase();
// Returns a trusted value from CroSettings indicating if the device
@@ -161,7 +158,7 @@ class EPKPChallengeKeyBase {
bool success,
const std::string& pem_certificate_chain);
- policy::EnterpriseInstallAttributes* install_attributes_;
+ chromeos::InstallAttributes* install_attributes_;
};
class EPKPChallengeMachineKey : public EPKPChallengeKeyBase {
@@ -174,7 +171,7 @@ class EPKPChallengeMachineKey : public EPKPChallengeKeyBase {
chromeos::CryptohomeClient* cryptohome_client,
cryptohome::AsyncMethodCaller* async_caller,
chromeos::attestation::AttestationFlow* attestation_flow,
- policy::EnterpriseInstallAttributes* install_attributes);
+ chromeos::InstallAttributes* install_attributes);
~EPKPChallengeMachineKey() override;
// Asynchronously run the flow to challenge a machine key in the |caller|
@@ -209,7 +206,7 @@ class EPKPChallengeUserKey : public EPKPChallengeKeyBase {
chromeos::CryptohomeClient* cryptohome_client,
cryptohome::AsyncMethodCaller* async_caller,
chromeos::attestation::AttestationFlow* attestation_flow,
- policy::EnterpriseInstallAttributes* install_attributes);
+ chromeos::InstallAttributes* install_attributes);
~EPKPChallengeUserKey() override;
static void RegisterProfilePrefs(user_prefs::PrefRegistrySyncable* registry);

Powered by Google App Engine
This is Rietveld 408576698