| Index: pdf/pdfium/pdfium_page.cc
 | 
| diff --git a/pdf/pdfium/pdfium_page.cc b/pdf/pdfium/pdfium_page.cc
 | 
| index e514af33d324fccb0ad61f3421cc8f2fdd751789..a7912a6e344bf60ebe8f3382be9f9620444d0cec 100644
 | 
| --- a/pdf/pdfium/pdfium_page.cc
 | 
| +++ b/pdf/pdfium/pdfium_page.cc
 | 
| @@ -157,7 +157,7 @@ base::Value* PDFiumPage::GetTextBoxAsValue(double page_height,
 | 
|      FPDFText_GetBoundedText(GetTextPage(), left, top, right, bottom, NULL, 0);
 | 
|    if (char_count > 0) {
 | 
|      unsigned short* data = reinterpret_cast<unsigned short*>(
 | 
| -        WriteInto(&text_utf16, char_count + 1));
 | 
| +        base::WriteInto(&text_utf16, char_count + 1));
 | 
|      FPDFText_GetBoundedText(GetTextPage(),
 | 
|                              left, top, right, bottom,
 | 
|                              data, char_count);
 | 
| 
 |