Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1857)

Unified Diff: content/renderer/pepper/pepper_file_chooser_host.cc

Issue 12286020: Replace FilePath with base::FilePath. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 =
« no previous file with comments | « content/renderer/hyphenator/hyphenator_unittest.cc ('k') | content/renderer/pepper/pepper_file_chooser_host_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698