| Index: printing/printing_context_win.cc
|
| diff --git a/printing/printing_context_win.cc b/printing/printing_context_win.cc
|
| index 9e97dd24d2b2256322215783232d2678ee607c34..1c1e3afa6687bb7fd2a5111b8ab97153ae0c7785 100644
|
| --- a/printing/printing_context_win.cc
|
| +++ b/printing/printing_context_win.cc
|
| @@ -434,7 +434,7 @@ PrintingContext::Result PrintingContextWin::NewDocument(
|
|
|
| DCHECK(SimplifyDocumentTitle(document_name) == document_name);
|
| DOCINFO di = { sizeof(DOCINFO) };
|
| - const std::wstring& document_name_wide = UTF16ToWide(document_name);
|
| + const std::wstring& document_name_wide = base::UTF16ToWide(document_name);
|
| di.lpszDocName = document_name_wide.c_str();
|
|
|
| // Is there a debug dump directory specified? If so, force to print to a file.
|
| @@ -447,7 +447,7 @@ PrintingContext::Result PrintingContextWin::NewDocument(
|
| filename += L"_";
|
| filename += base::TimeFormatTimeOfDay(now);
|
| filename += L"_";
|
| - filename += UTF16ToWide(document_name);
|
| + filename += base::UTF16ToWide(document_name);
|
| filename += L"_";
|
| filename += L"buffer.prn";
|
| file_util::ReplaceIllegalCharactersInPath(&filename, '_');
|
|
|