Index: chrome/installer/setup/archive_patch_helper.cc |
diff --git a/chrome/installer/setup/archive_patch_helper.cc b/chrome/installer/setup/archive_patch_helper.cc |
index 959be3afd817f30edb79d2ede2a3df4ec2fd7523..38955af86a8ecec6c42b9ac74e25b0eb4a761459 100644 |
--- a/chrome/installer/setup/archive_patch_helper.cc |
+++ b/chrome/installer/setup/archive_patch_helper.cc |
@@ -4,6 +4,8 @@ |
#include "chrome/installer/setup/archive_patch_helper.h" |
+#include <stdint.h> |
+ |
#include "base/files/file_util.h" |
#include "base/logging.h" |
#include "chrome/installer/util/lzma_util.h" |
@@ -41,9 +43,8 @@ bool ArchivePatchHelper::Uncompress(base::FilePath* last_uncompressed_file) { |
// UnPackArchive takes care of logging. |
base::string16 output_file; |
- int32 lzma_result = LzmaUtil::UnPackArchive(compressed_archive_.value(), |
- working_directory_.value(), |
- &output_file); |
+ int32_t lzma_result = LzmaUtil::UnPackArchive( |
+ compressed_archive_.value(), working_directory_.value(), &output_file); |
if (lzma_result != NO_ERROR) |
return false; |