Chromium Code Reviews| Index: base/pickle.cc |
| diff --git a/base/pickle.cc b/base/pickle.cc |
| index 0e44131f69ba316c4c7a16b7c2c2a2a3f6f65afa..00c6ef06f36aadbe10a9c5de7b3dbc7d6730fa57 100644 |
| --- a/base/pickle.cc |
| +++ b/base/pickle.cc |
| @@ -90,6 +90,10 @@ bool PickleIterator::ReadUInt64(uint64* result) { |
| return ReadBuiltinType(result); |
| } |
| +bool PickleIterator::ReadFloat(float* result) { |
| + return ReadBuiltinType(result); |
| +} |
| + |
| bool PickleIterator::ReadString(std::string* result) { |
| int len; |
| if (!ReadInt(&len)) |