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

Unified Diff: chrome/installer/util/lzma_util.h

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_file_allocator_unittest.cc ('k') | chrome/installer/util/lzma_util.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/installer/util/lzma_util.h
diff --git a/chrome/installer/util/lzma_util.h b/chrome/installer/util/lzma_util.h
index 634309cb058485dc89ba93b15f68de39e2814b07..c4e4ed4b49cdad29f81ce35d3e252d496db76045 100644
--- a/chrome/installer/util/lzma_util.h
+++ b/chrome/installer/util/lzma_util.h
@@ -6,11 +6,12 @@
#define CHROME_INSTALLER_UTIL_LZMA_UTIL_H_
#include <windows.h>
+#include <stdint.h>
#include <set>
#include <string>
-#include "base/basictypes.h"
+#include "base/macros.h"
namespace base {
class FilePath;
@@ -21,9 +22,9 @@ class LzmaUtil {
public:
// Utility method that does the job of calling OpenArchive(), UnPack()
// and CloseArchive() in order. Returns error code (NO_ERROR if successful).
- static int32 UnPackArchive(const std::wstring& archive,
- const std::wstring& output_dir,
- std::wstring* output_file);
+ static int32_t UnPackArchive(const std::wstring& archive,
+ const std::wstring& output_dir,
+ std::wstring* output_file);
LzmaUtil();
~LzmaUtil();
« no previous file with comments | « chrome/installer/util/lzma_file_allocator_unittest.cc ('k') | chrome/installer/util/lzma_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698