Index: ppapi/proxy/pdf_resource.cc |
diff --git a/ppapi/proxy/pdf_resource.cc b/ppapi/proxy/pdf_resource.cc |
index 80c4237a5e5b4805cb3aa7147f5e1432ab3894ab..6672bac9e16e08849f97443d93e2c81fbab93214 100644 |
--- a/ppapi/proxy/pdf_resource.cc |
+++ b/ppapi/proxy/pdf_resource.cc |
@@ -62,8 +62,10 @@ void PDFResource::SearchString(const unsigned short* input_string, |
PP_PrivateFindResult** results, int* count) { |
if (locale_.empty()) |
locale_ = GetLocale(); |
- 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(term, -1, string, -1, locale_.c_str(), |