Index: chrome/installer/test/resource_updater.cc |
diff --git a/chrome/installer/test/resource_updater.cc b/chrome/installer/test/resource_updater.cc |
index 4c6be277504bcd5c43991de63fe825c19ead2226..933921c7eed4ff3c8fc8d08a6267540af06dfc4f 100644 |
--- a/chrome/installer/test/resource_updater.cc |
+++ b/chrome/installer/test/resource_updater.cc |
@@ -5,6 +5,7 @@ |
#include "chrome/installer/test/resource_updater.h" |
#include <windows.h> |
+#include <stdint.h> |
#include "base/files/file_path.h" |
#include "base/files/memory_mapped_file.h" |
@@ -43,9 +44,8 @@ bool ResourceUpdater::Update(const std::wstring& name, |
if (input.Initialize(input_file)) { |
if (UpdateResource(handle_, type.c_str(), name.c_str(), language_id, |
- const_cast<uint8*>(input.data()), |
- static_cast<DWORD>(input.length())) |
- != FALSE) { |
+ const_cast<uint8_t*>(input.data()), |
+ static_cast<DWORD>(input.length())) != FALSE) { |
return true; |
} |
PLOG(DFATAL) << "UpdateResource failed for resource \"" << name << "\""; |