| Index: components/crx_file/id_util_unittest.cc
|
| diff --git a/components/crx_file/id_util_unittest.cc b/components/crx_file/id_util_unittest.cc
|
| index fd7f6203cd19da5cb5a418bc884ea1e92f52eb94..c198701868d02fd7177679bdc39ef080b07ef0b8 100644
|
| --- a/components/crx_file/id_util_unittest.cc
|
| +++ b/components/crx_file/id_util_unittest.cc
|
| @@ -4,14 +4,16 @@
|
|
|
| #include "components/crx_file/id_util.h"
|
|
|
| -#include "base/basictypes.h"
|
| +#include <stdint.h>
|
| +
|
| +#include "base/macros.h"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
|
|
| namespace crx_file {
|
| namespace id_util {
|
|
|
| TEST(IDUtilTest, GenerateID) {
|
| - const uint8 public_key_info[] = {
|
| + const uint8_t public_key_info[] = {
|
| 0x30, 0x81, 0x9f, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7,
|
| 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x81, 0x8d, 0x00, 0x30, 0x81,
|
| 0x89, 0x02, 0x81, 0x81, 0x00, 0xb8, 0x7f, 0x2b, 0x20, 0xdc, 0x7c, 0x9b,
|
|
|