| Index: base/trace_event/trace_event_memory_overhead.cc
|
| diff --git a/base/trace_event/trace_event_memory_overhead.cc b/base/trace_event/trace_event_memory_overhead.cc
|
| index 95177b541d62fc5e2402df7c9920c67d4e24dc84..9491f65359ffa6fd35b440a05f04f9f2f8af423c 100644
|
| --- a/base/trace_event/trace_event_memory_overhead.cc
|
| +++ b/base/trace_event/trace_event_memory_overhead.cc
|
| @@ -86,7 +86,7 @@ void TraceEventMemoryOverhead::AddValue(const Value& value) {
|
| case Value::Type::BINARY: {
|
| const Value* binary_value = nullptr;
|
| value.GetAsBinary(&binary_value);
|
| - Add("BinaryValue", sizeof(Value) + binary_value->GetSize());
|
| + Add("BinaryValue", sizeof(Value) + binary_value->GetBlob().size());
|
| } break;
|
|
|
| case Value::Type::DICTIONARY: {
|
|
|