| Index: ppapi/shared_impl/id_assignment.h
|
| diff --git a/ppapi/shared_impl/id_assignment.h b/ppapi/shared_impl/id_assignment.h
|
| index 4ca8cd17d3e11afc614a9ef5b62ae7e3b16b8662..1444f2f609f3f1df45e436421dc8320cb4dcb819 100644
|
| --- a/ppapi/shared_impl/id_assignment.h
|
| +++ b/ppapi/shared_impl/id_assignment.h
|
| @@ -5,9 +5,10 @@
|
| #ifndef PPAPI_SHARED_IMPL_ID_ASSIGNMENT_H_
|
| #define PPAPI_SHARED_IMPL_ID_ASSIGNMENT_H_
|
|
|
| +#include <stdint.h>
|
| +
|
| #include <limits>
|
|
|
| -#include "base/basictypes.h"
|
| #include "ppapi/shared_impl/ppapi_shared_export.h"
|
|
|
| namespace ppapi {
|
| @@ -24,7 +25,7 @@ enum PPIdType {
|
|
|
| PPAPI_SHARED_EXPORT extern const unsigned int kPPIdTypeBits;
|
|
|
| -extern const int32 kMaxPPId;
|
| +extern const int32_t kMaxPPId;
|
|
|
| // The least significant bits are the type, the rest are the value.
|
| template <typename T>
|
|
|