| 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);
|
|
|