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

Unified Diff: chrome/installer/util/lzma_util.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/util/lzma_util.h ('k') | chrome/installer/util/master_preferences.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/installer/util/lzma_util.cc
diff --git a/chrome/installer/util/lzma_util.cc b/chrome/installer/util/lzma_util.cc
index 743984c47fd722ca5017cb00060dafc56c5862b0..fa5d21f1b3dc842775863598ea3501fe1d61ea0b 100644
--- a/chrome/installer/util/lzma_util.cc
+++ b/chrome/installer/util/lzma_util.cc
@@ -4,6 +4,8 @@
#include "chrome/installer/util/lzma_util.h"
+#include <stddef.h>
+
#include "base/files/file_path.h"
#include "base/files/file_util.h"
#include "base/logging.h"
@@ -78,9 +80,9 @@ SRes SzFileReadImp(void *object, void *buffer, size_t *size) {
} // namespace
// static
-int32 LzmaUtil::UnPackArchive(const std::wstring& archive,
- const std::wstring& output_dir,
- std::wstring* output_file) {
+int32_t LzmaUtil::UnPackArchive(const std::wstring& archive,
+ const std::wstring& output_dir,
+ std::wstring* output_file) {
VLOG(1) << "Opening archive " << archive;
LzmaUtil lzma_util;
DWORD ret;
« no previous file with comments | « chrome/installer/util/lzma_util.h ('k') | chrome/installer/util/master_preferences.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698