Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3272)

Unified Diff: chrome_elf/elf_imports_unittest.cc

Issue 1537333002: Switch to standard integer types in chrome_elf/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: clean Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome_elf/dll_hash/dll_hash.cc ('k') | chrome_elf/thunk_getter.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
}
};
« no previous file with comments | « chrome_elf/dll_hash/dll_hash.cc ('k') | chrome_elf/thunk_getter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698