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

Unified Diff: chrome/browser/install_verification/win/module_info.h

Issue 338353002: Module size is uint32_t on Windows. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 months 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/install_verification/win/module_info.h
diff --git a/chrome/browser/install_verification/win/module_info.h b/chrome/browser/install_verification/win/module_info.h
index db3fb4157d6dec45966ff914f98a12fd1b01a322..f2b4a2a3d1f360e6de4533eb2e033161370ac13e 100644
--- a/chrome/browser/install_verification/win/module_info.h
+++ b/chrome/browser/install_verification/win/module_info.h
@@ -15,7 +15,7 @@ struct ModuleInfo {
ModuleInfo(const base::char16* const module_name,
uintptr_t module_base_address,
- size_t module_size)
+ uint32_t module_size)
: base_address(module_base_address),
size(module_size),
name(module_name) {
@@ -32,8 +32,8 @@ struct ModuleInfo {
}
base::string16 name;
- uintptr_t base_address;
- size_t size;
+ uintptr_t base_address;
+ uint32_t size;
};
#endif // CHROME_BROWSER_INSTALL_VERIFICATION_WIN_MODULE_INFO_H_
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698