| Index: content/renderer/pepper/pepper_file_chooser_host.cc
|
| diff --git a/content/renderer/pepper/pepper_file_chooser_host.cc b/content/renderer/pepper/pepper_file_chooser_host.cc
|
| index 322603ae57f5f25f8a8c5059d2ed49f7c0774938..98edda5789f828545666de29c8d76443479111a3 100644
|
| --- a/content/renderer/pepper/pepper_file_chooser_host.cc
|
| +++ b/content/renderer/pepper/pepper_file_chooser_host.cc
|
| @@ -101,9 +101,9 @@ void PepperFileChooserHost::StoreChosenFiles(
|
| std::vector<ppapi::PPB_FileRef_CreateInfo> chosen_files;
|
| for (size_t i = 0; i < files.size(); i++) {
|
| #if defined(OS_WIN)
|
| - FilePath file_path(UTF8ToWide(files[i].path));
|
| + base::FilePath file_path(UTF8ToWide(files[i].path));
|
| #else
|
| - FilePath file_path(files[i].path);
|
| + base::FilePath file_path(files[i].path);
|
| #endif
|
|
|
| webkit::ppapi::PPB_FileRef_Impl* ref =
|
|
|