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

Unified Diff: chrome/installer/test/pe_image_resources.h

Issue 1548153002: Switch to standard integer types in chrome/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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
Index: chrome/installer/test/pe_image_resources.h
diff --git a/chrome/installer/test/pe_image_resources.h b/chrome/installer/test/pe_image_resources.h
index 3ffdd6e9b94ae7c5c2abcada291f744602c05786..73de6b90007c5c2b202aadbde3cee0d289a70fd8 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 @@ typedef std::vector<EntryId> EntryPath;
// |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
« no previous file with comments | « chrome/installer/test/alternate_version_generator_main.cc ('k') | chrome/installer/test/pe_image_resources.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698