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

Unified Diff: chrome/installer/util/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
« no previous file with comments | « chrome/installer/util/wmi.cc ('k') | chrome/installer/util/work_item.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/installer/util/work_item.h
diff --git a/chrome/installer/util/work_item.h b/chrome/installer/util/work_item.h
index a8c53769b9726ab77d1fa4d9f3b9da019efe6fc0..446b4914ff51d541fedce318597a844a388731d1 100644
--- a/chrome/installer/util/work_item.h
+++ b/chrome/installer/util/work_item.h
@@ -10,11 +10,11 @@
#define CHROME_INSTALLER_UTIL_WORK_ITEM_H_
#include <windows.h>
+#include <stdint.h>
#include <string>
#include <vector>
-#include "base/basictypes.h"
#include "base/callback_forward.h"
class CallbackWorkItem;
@@ -161,7 +161,7 @@ class WorkItem {
const std::wstring& key_path,
REGSAM wow64_access,
const std::wstring& value_name,
- int64 value_data,
+ int64_t value_data,
bool overwrite);
// Create a SetRegValueWorkItem that sets a registry value based on the value
« no previous file with comments | « chrome/installer/util/wmi.cc ('k') | chrome/installer/util/work_item.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698