Switch to standard integer types in chrome/.

BUG=138542
[email protected]
NOPRESUBMIT=true

Review URL: https://codereview.chromium.org/1548153002

Cr-Commit-Position: refs/heads/master@{#366893}
diff --git a/chrome/installer/test/pe_image_resources.h b/chrome/installer/test/pe_image_resources.h
index 3ffdd6e9..73de6b9 100644
--- a/chrome/installer/test/pe_image_resources.h
+++ b/chrome/installer/test/pe_image_resources.h
@@ -9,11 +9,12 @@
 #define CHROME_INSTALLER_TEST_PE_IMAGE_RESOURCES_H_
 
 #include <windows.h>
+#include <stddef.h>
+#include <stdint.h>
 
 #include <string>
 #include <vector>
 
-#include "base/basictypes.h"
 #include "base/logging.h"
 
 namespace base { namespace win { class PEImage; } }
@@ -48,8 +49,11 @@
 // |code_page| - the code page to be used to interpret string data in the
 // entry's data.
 // |context| - the context given to EnumResources.
-typedef void (*EnumResource_Fn)(const EntryPath& path, uint8* data,
-                                DWORD size, DWORD code_page, uintptr_t context);
+typedef void (*EnumResource_Fn)(const EntryPath& path,
+                                uint8_t* data,
+                                DWORD size,
+                                DWORD code_page,
+                                uintptr_t context);
 
 // Enumerates all data entries in |image|'s resource directory.  |callback| is
 // invoked (and provided with |context|) once per entry.  Returns false if