Index: base/pickle.cc |
diff --git a/base/pickle.cc b/base/pickle.cc |
index af3191b9d86db2785fe375ecbcb045cf0a420870..0acce9d4bab3e261351f86b1ce8ef165c6404eb8 100644 |
--- a/base/pickle.cc |
+++ b/base/pickle.cc |
@@ -90,6 +90,10 @@ bool PickleIterator::ReadUInt64(uint64* result) { |
return ReadBuiltinType(result); |
} |
+bool PickleIterator::ReadUIntPtr(uintptr_t* result) { |
+ return ReadBuiltinType(result); |
+} |
+ |
bool PickleIterator::ReadFloat(float* result) { |
return ReadBuiltinType(result); |
} |