| Index: base/metrics/persistent_histogram_allocator.cc
|
| diff --git a/base/metrics/persistent_histogram_allocator.cc b/base/metrics/persistent_histogram_allocator.cc
|
| index d871706cc53d6c8c4513e2ac6aa433b173741413..7a4e864ebfa640c94662854594fd5877e5c352c6 100644
|
| --- a/base/metrics/persistent_histogram_allocator.cc
|
| +++ b/base/metrics/persistent_histogram_allocator.cc
|
| @@ -667,7 +667,7 @@ std::unique_ptr<HistogramBase> PersistentHistogramAllocator::CreateHistogram(
|
| /*make_iterable=*/false);
|
|
|
| // Create the right type of histogram.
|
| - std::string name(histogram_data_ptr->name);
|
| + const char* name = histogram_data_ptr->name;
|
| std::unique_ptr<HistogramBase> histogram;
|
| switch (histogram_type) {
|
| case HISTOGRAM:
|
|
|