| Index: chrome/renderer/pepper/ppb_pdf_impl.cc
|
| diff --git a/chrome/renderer/pepper/ppb_pdf_impl.cc b/chrome/renderer/pepper/ppb_pdf_impl.cc
|
| index 4b77044f525b7979e303b4e822990ef2dfec4e9d..2a43fb80492469e28cd8ed37b5f834382d11dd83 100644
|
| --- a/chrome/renderer/pepper/ppb_pdf_impl.cc
|
| +++ b/chrome/renderer/pepper/ppb_pdf_impl.cc
|
| @@ -243,8 +243,10 @@ void SearchString(PP_Instance instance,
|
| bool case_sensitive,
|
| PP_PrivateFindResult** results,
|
| int* count) {
|
| - const char16* string = reinterpret_cast<const char16*>(input_string);
|
| - const char16* term = reinterpret_cast<const char16*>(input_term);
|
| + const base::char16* string =
|
| + reinterpret_cast<const base::char16*>(input_string);
|
| + const base::char16* term =
|
| + reinterpret_cast<const base::char16*>(input_term);
|
|
|
| UErrorCode status = U_ZERO_ERROR;
|
| UStringSearch* searcher = usearch_open(
|
|
|