| Index: components/ownership/owner_settings_service.cc
|
| diff --git a/components/ownership/owner_settings_service.cc b/components/ownership/owner_settings_service.cc
|
| index 42ccfe4f20d1bf9a6582a573502d28f8c2d0ccf5..b15609e70452c7fef2cd1792ce20441e7a40ed49 100644
|
| --- a/components/ownership/owner_settings_service.cc
|
| +++ b/components/ownership/owner_settings_service.cc
|
| @@ -6,8 +6,8 @@
|
|
|
| #include <cryptohi.h>
|
| #include <keyhi.h>
|
| +#include <stdint.h>
|
|
|
| -#include "base/basictypes.h"
|
| #include "base/bind.h"
|
| #include "base/callback.h"
|
| #include "base/location.h"
|
| @@ -50,7 +50,7 @@ scoped_ptr<em::PolicyFetchResponse> AssembleAndSignPolicy(
|
| SECItem signature_item;
|
| if (SGN_Begin(sign_context.get()) != SECSuccess ||
|
| SGN_Update(sign_context.get(),
|
| - reinterpret_cast<const uint8*>(
|
| + reinterpret_cast<const uint8_t*>(
|
| policy_response->policy_data().c_str()),
|
| policy_response->policy_data().size()) != SECSuccess ||
|
| SGN_End(sign_context.get(), &signature_item) != SECSuccess) {
|
|
|