Chromium Code Reviews| Index: chrome/browser/chromeos/settings/install_attributes.h |
| diff --git a/chrome/browser/chromeos/settings/install_attributes.h b/chrome/browser/chromeos/settings/install_attributes.h |
| index 53615dfc33021b62d0a2c05eed62ff2e928afd9f..2b51ed6f6f9fb86cf734dd27d558ed1849f0cc43 100644 |
| --- a/chrome/browser/chromeos/settings/install_attributes.h |
| +++ b/chrome/browser/chromeos/settings/install_attributes.h |
| @@ -70,6 +70,17 @@ class InstallAttributes { |
| // ReadAttributesIfReady(). |
| void ReadImmutableAttributes(const base::Closure& callback); |
| + // Updates the firmware management parameters from TPM, storring the devmode |
| + // flag according to |block_devmode|. Invokes |callback| when done. Must be |
| + // called before LockDevice is done. Used to update TPM on enrollment. |
| + void SetBlockDevmodeInTpm( |
| + bool block_devmode, |
| + const CryptohomeClient::ProtobufMethodCallback& callback); |
| + |
| + // Removes the firmware management parameters from TPM. |
| + void RemoveFwmpInTpm( |
|
Daniel Erat
2017/03/06 21:18:26
nit: same comment about expanding acronym here
igorcov
2017/03/09 12:22:57
Done.
|
| + const CryptohomeClient::ProtobufMethodCallback& callback); |
| + |
| // Locks the device into |device_mode|. Depending on |device_mode|, a |
| // specific subset of |domain|, |realm| and |device_id| must be set. Can also |
| // be called after the lock has already been taken, in which case it checks |