Chromium Code Reviews| Index: base/metrics/histogram_delta_serialization.h |
| diff --git a/base/metrics/histogram_delta_serialization.h b/base/metrics/histogram_delta_serialization.h |
| index 0a3983f8eabb8fedb0a2a1be666ae323f294fa89..fba5bec4950c2174e3a67163be3e60646865ef5c 100644 |
| --- a/base/metrics/histogram_delta_serialization.h |
| +++ b/base/metrics/histogram_delta_serialization.h |
| @@ -30,7 +30,8 @@ class BASE_EXPORT HistogramDeltaSerialization : public HistogramFlattener { |
| // this method. Stores the deltas in serialized form into |serialized_deltas|. |
| // If |serialized_deltas| is NULL, no data is serialized, though the next call |
| // will compute the deltas relative to this one. |
| - void PrepareAndSerializeDeltas(std::vector<std::string>* serialized_deltas); |
| + void PrepareAndSerializeDeltas(std::vector<std::string>* serialized_deltas, |
| + bool include_persistent); |
|
Alexei Svitkine (slow)
2016/01/12 21:54:44
Document the new param.
bcwhite
2016/01/13 13:38:29
Done.
|
| // Deserialize deltas and add samples to corresponding histograms, creating |
| // them if necessary. Silently ignores errors in |serialized_deltas|. |