Index: chrome/installer/util/set_reg_value_work_item.h |
diff --git a/chrome/installer/util/set_reg_value_work_item.h b/chrome/installer/util/set_reg_value_work_item.h |
index b5b3439a52dcec04439970c94a6fea22e5a165ab..60104c4e9c89133231adac143a241456c73f498a 100644 |
--- a/chrome/installer/util/set_reg_value_work_item.h |
+++ b/chrome/installer/util/set_reg_value_work_item.h |
@@ -6,6 +6,7 @@ |
#define CHROME_INSTALLER_UTIL_SET_REG_VALUE_WORK_ITEM_H__ |
#include <windows.h> |
+#include <stdint.h> |
#include <string> |
#include <vector> |
@@ -36,7 +37,7 @@ class SetRegValueWorkItem : public WorkItem { |
const std::wstring& key_path, |
REGSAM wow64_access, |
const std::wstring& value_name, |
- int64 value_data, |
+ int64_t value_data, |
bool overwrite); |
// Implies |overwrite_| and TYPE_SZ for now. |
@@ -91,9 +92,9 @@ class SetRegValueWorkItem : public WorkItem { |
// Type of data to store |
DWORD type_; |
- std::vector<uint8> value_; |
+ std::vector<uint8_t> value_; |
DWORD previous_type_; |
- std::vector<uint8> previous_value_; |
+ std::vector<uint8_t> previous_value_; |
SettingStatus status_; |
}; |