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(); |