Index: base/pickle.h |
diff --git a/base/pickle.h b/base/pickle.h |
index 3a17007fc47170ad9be63790b107ed88a134da7e..66340caf2e2116f46c3ac62993423e2d3f347146 100644 |
--- a/base/pickle.h |
+++ b/base/pickle.h |
@@ -67,6 +67,7 @@ class Pickle { |
bool ReadInt(void** iter, int* result) const; |
bool ReadLong(void** iter, long* result) const; |
bool ReadSize(void** iter, size_t* result) const; |
+ bool ReadUInt32(void** iter, uint32* result) const; |
bool ReadInt64(void** iter, int64* result) const; |
bool ReadIntPtr(void** iter, intptr_t* result) const; |
bool ReadString(void** iter, std::string* result) const; |
@@ -94,6 +95,9 @@ class Pickle { |
bool WriteSize(size_t value) { |
return WriteBytes(&value, sizeof(value)); |
} |
+ bool WriteUInt32(uint32 value) { |
+ return WriteBytes(&value, sizeof(value)); |
+ } |
bool WriteInt64(int64 value) { |
return WriteBytes(&value, sizeof(value)); |
} |