| Index: base/histogram.cc
|
| diff --git a/base/histogram.cc b/base/histogram.cc
|
| index 384716d713c4fc33f3fd19c5f6c76641744fc0a1..2b05077282416598aba5c6d98650845af7808441 100644
|
| --- a/base/histogram.cc
|
| +++ b/base/histogram.cc
|
| @@ -25,7 +25,7 @@ const int Histogram::kHexRangePrintingFlag = 0x8000;
|
|
|
| Histogram::Histogram(const wchar_t* name, Sample minimum,
|
| Sample maximum, size_t bucket_count)
|
| - : StatsRate(name),
|
| + : StatsRate(WideToASCII(name).c_str()),
|
| histogram_name_(WideToASCII(name)),
|
| declared_min_(minimum),
|
| declared_max_(maximum),
|
| @@ -39,7 +39,7 @@ Histogram::Histogram(const wchar_t* name, Sample minimum,
|
|
|
| Histogram::Histogram(const wchar_t* name, TimeDelta minimum,
|
| TimeDelta maximum, size_t bucket_count)
|
| - : StatsRate(name),
|
| + : StatsRate(WideToASCII(name).c_str()),
|
| histogram_name_(WideToASCII(name)),
|
| declared_min_(static_cast<int> (minimum.InMilliseconds())),
|
| declared_max_(static_cast<int> (maximum.InMilliseconds())),
|
|
|