Index: dbus/values_util.h |
diff --git a/dbus/values_util.h b/dbus/values_util.h |
index 9ece9b9be55b6b82b52be2ded864672b81ea7fbb..b6f4ff3b10edc348aafe3f880f4950b59f4d55fb 100644 |
--- a/dbus/values_util.h |
+++ b/dbus/values_util.h |
@@ -5,6 +5,8 @@ |
#ifndef DBUS_VALUES_UTIL_H_ |
#define DBUS_VALUES_UTIL_H_ |
+#include <stdint.h> |
+ |
#include "dbus/dbus_export.h" |
namespace base { |
@@ -18,8 +20,8 @@ class MessageWriter; |
// Pops a value from |reader| as a base::Value. |
// Returns NULL if an error occurs. |
-// Note: Integer values larger than int32 (including uint32) are converted to |
-// double. Non-string diciontary keys are converted to strings. |
+// Note: Integer values larger than int32_t (including uint32_t) are converted |
+// to double. Non-string dictionary keys are converted to strings. |
CHROME_DBUS_EXPORT base::Value* PopDataAsValue(MessageReader* reader); |
// Appends a basic type value to |writer|. Basic types are BOOLEAN, INTEGER, |