summaryrefslogtreecommitdiffstats
path: root/chrome/common/metrics_helpers.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/common/metrics_helpers.cc')
-rw-r--r--chrome/common/metrics_helpers.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/common/metrics_helpers.cc b/chrome/common/metrics_helpers.cc
index 0441862..028d0b3 100644
--- a/chrome/common/metrics_helpers.cc
+++ b/chrome/common/metrics_helpers.cc
@@ -372,7 +372,7 @@ int64 MetricsLogBase::GetBuildTime() {
if (!integral_build_time) {
Time time;
const char* kDateTime = __DATE__ " " __TIME__ " GMT";
- bool result = Time::FromString(ASCIIToWide(kDateTime).c_str(), &time);
+ bool result = Time::FromString(kDateTime, &time);
DCHECK(result);
integral_build_time = static_cast<int64>(time.ToTimeT());
}