Index: base/win/registry.h |
diff --git a/base/win/registry.h b/base/win/registry.h |
index 83f354d0b6d6dfb0b6f3cc3459e0f628eef10459..1285be010d42bb45e47c9c4c613e659e0cb687da 100644 |
--- a/base/win/registry.h |
+++ b/base/win/registry.h |
@@ -6,11 +6,12 @@ |
#define BASE_WIN_REGISTRY_H_ |
#include <windows.h> |
+#include <stdint.h> |
#include <string> |
#include <vector> |
#include "base/base_export.h" |
-#include "base/basictypes.h" |
+#include "base/macros.h" |
#include "base/win/object_watcher.h" |
#include "base/win/scoped_handle.h" |
@@ -84,13 +85,13 @@ class BASE_EXPORT RegKey { |
// Getters: |
- // Returns an int32 value. If |name| is NULL or empty, returns the default |
+ // Returns an int32_t value. If |name| is NULL or empty, returns the default |
// value, if any. |
LONG ReadValueDW(const wchar_t* name, DWORD* out_value) const; |
- // Returns an int64 value. If |name| is NULL or empty, returns the default |
+ // Returns an int64_t value. If |name| is NULL or empty, returns the default |
// value, if any. |
- LONG ReadInt64(const wchar_t* name, int64* out_value) const; |
+ LONG ReadInt64(const wchar_t* name, int64_t* out_value) const; |
// Returns a string value. If |name| is NULL or empty, returns the default |
// value, if any. |
@@ -110,7 +111,7 @@ class BASE_EXPORT RegKey { |
// Setters: |
- // Sets an int32 value. |
+ // Sets an int32_t value. |
LONG WriteValue(const wchar_t* name, DWORD in_value); |
// Sets a string value. |