| Index: components/ownership/owner_key_util_impl.h
|
| diff --git a/components/ownership/owner_key_util_impl.h b/components/ownership/owner_key_util_impl.h
|
| index 137b4f7145b88e540690303a7e59f4482babf9c6..eb0057014eeb63124da7f7c5477684a2805acccb 100644
|
| --- a/components/ownership/owner_key_util_impl.h
|
| +++ b/components/ownership/owner_key_util_impl.h
|
| @@ -5,6 +5,8 @@
|
| #ifndef COMPONENTS_OWNERSHIP_OWNER_KEY_UTIL_IMPL_H_
|
| #define COMPONENTS_OWNERSHIP_OWNER_KEY_UTIL_IMPL_H_
|
|
|
| +#include <stdint.h>
|
| +
|
| #include "base/compiler_specific.h"
|
| #include "base/files/file_path.h"
|
| #include "base/macros.h"
|
| @@ -20,9 +22,9 @@ class OWNERSHIP_EXPORT OwnerKeyUtilImpl : public OwnerKeyUtil {
|
| explicit OwnerKeyUtilImpl(const base::FilePath& public_key_file);
|
|
|
| // OwnerKeyUtil implementation:
|
| - bool ImportPublicKey(std::vector<uint8>* output) override;
|
| + bool ImportPublicKey(std::vector<uint8_t>* output) override;
|
| crypto::ScopedSECKEYPrivateKey FindPrivateKeyInSlot(
|
| - const std::vector<uint8>& key,
|
| + const std::vector<uint8_t>& key,
|
| PK11SlotInfo* slot) override;
|
| bool IsPublicKeyPresent() override;
|
|
|
|
|