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

Unified Diff: chrome/installer/util/shell_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/set_reg_value_work_item.cc ('k') | chrome/installer/util/shell_util.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/installer/util/shell_util.h
diff --git a/chrome/installer/util/shell_util.h b/chrome/installer/util/shell_util.h
index 3cf45ea58de69b02d455752431906d2ed3a12101..a17a787f02428863135beeb47c9540334827418c 100644
--- a/chrome/installer/util/shell_util.h
+++ b/chrome/installer/util/shell_util.h
@@ -10,15 +10,17 @@
#define CHROME_INSTALLER_UTIL_SHELL_UTIL_H_
#include <windows.h>
+#include <stddef.h>
+#include <stdint.h>
#include <map>
#include <set>
#include <utility>
#include <vector>
-#include "base/basictypes.h"
#include "base/files/file_path.h"
#include "base/logging.h"
+#include "base/macros.h"
#include "base/memory/ref_counted.h"
#include "base/memory/scoped_vector.h"
#include "base/strings/string16.h"
@@ -210,7 +212,7 @@ class ShellUtil {
// be used to create/update the shortcut, others will be ignored on update
// and possibly replaced by default values on create (see individual
// property setters above for details on default values).
- uint32 options;
+ uint32_t options;
};
// Relative path of the URL Protocol registry entry (prefixed with '\').
@@ -616,7 +618,7 @@ class ShellUtil {
// Note: This method does not suffix the output with '=' signs as technically
// required by the base32 standard for inputs that aren't a multiple of 5
// bytes.
- static base::string16 ByteArrayToBase32(const uint8* bytes, size_t size);
+ static base::string16 ByteArrayToBase32(const uint8_t* bytes, size_t size);
// Associates a set of file extensions with a particular application in the
// Windows registry, for the current user only. If an extension has no
« no previous file with comments | « chrome/installer/util/set_reg_value_work_item.cc ('k') | chrome/installer/util/shell_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698