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

Unified Diff: chrome/installer/setup/archive_patch_helper.cc

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
« no previous file with comments | « chrome/installer/setup/archive_patch_helper.h ('k') | chrome/installer/setup/install_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
« no previous file with comments | « chrome/installer/setup/archive_patch_helper.h ('k') | chrome/installer/setup/install_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698