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

Unified Diff: chrome/installer/util/set_reg_value_work_item.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
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_;
};
« no previous file with comments | « chrome/installer/util/self_cleaning_temp_dir_unittest.cc ('k') | chrome/installer/util/set_reg_value_work_item.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698