| Index: chrome_elf/elf_imports_unittest.cc
|
| diff --git a/chrome_elf/elf_imports_unittest.cc b/chrome_elf/elf_imports_unittest.cc
|
| index 806ed790a043a34dbd00d9b4783174241e984880..946b9b5a7bcce04e60391d1c43e78c151eb86d27 100644
|
| --- a/chrome_elf/elf_imports_unittest.cc
|
| +++ b/chrome_elf/elf_imports_unittest.cc
|
| @@ -9,7 +9,6 @@
|
| #include <vector>
|
|
|
| #include "base/base_paths.h"
|
| -#include "base/basictypes.h"
|
| #include "base/compiler_specific.h"
|
| #include "base/files/file_path.h"
|
| #include "base/files/memory_mapped_file.h"
|
| @@ -42,7 +41,7 @@ class ELFImportsTest : public testing::Test {
|
|
|
| ASSERT_TRUE(module_mmap.Initialize(module_path));
|
| base::win::PEImageAsData pe_image_data(
|
| - reinterpret_cast<HMODULE>(const_cast<uint8*>(module_mmap.data())));
|
| + reinterpret_cast<HMODULE>(const_cast<uint8_t*>(module_mmap.data())));
|
| pe_image_data.EnumImportChunks(ELFImportsTest::ImportsCallback, imports);
|
| }
|
| };
|
|
|