| Index: ui/base/l10n/time_format.cc
|
| diff --git a/ui/base/l10n/time_format.cc b/ui/base/l10n/time_format.cc
|
| index 0c77d3407ec10bb48ec3fd20184de7c0d63e9b67..1f03599ebfa8773df5b4a41b644b0154c06a8bf5 100644
|
| --- a/ui/base/l10n/time_format.cc
|
| +++ b/ui/base/l10n/time_format.cc
|
| @@ -109,7 +109,7 @@ base::string16 TimeFormat::Detailed(TimeFormat::Format format,
|
| DCHECK_GT(capacity, 1);
|
| base::string16 result;
|
| UErrorCode error = U_ZERO_ERROR;
|
| - time_string.extract(static_cast<UChar*>(WriteInto(&result, capacity)),
|
| + time_string.extract(static_cast<UChar*>(base::WriteInto(&result, capacity)),
|
| capacity, error);
|
| DCHECK(U_SUCCESS(error));
|
| return result;
|
|
|