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

Unified Diff: webkit/plugins/ppapi/ppb_file_ref_impl.h

Issue 12163003: Add FilePath to base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 11 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
« no previous file with comments | « webkit/plugins/ppapi/ppb_directory_reader_impl.cc ('k') | webkit/plugins/ppapi/ppb_file_ref_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/plugins/ppapi/ppb_file_ref_impl.h
diff --git a/webkit/plugins/ppapi/ppb_file_ref_impl.h b/webkit/plugins/ppapi/ppb_file_ref_impl.h
index d7bb8c523ab9558125dde7c798bec9ef6faafdf1..4d455a715b35f74e5d818637b0d19ff1d7596cd7 100644
--- a/webkit/plugins/ppapi/ppb_file_ref_impl.h
+++ b/webkit/plugins/ppapi/ppb_file_ref_impl.h
@@ -27,7 +27,7 @@ class WEBKIT_GLUE_EXPORT PPB_FileRef_Impl
PPB_FileRef_Impl(const ::ppapi::PPB_FileRef_CreateInfo& info,
PPB_FileSystem_Impl* file_system);
PPB_FileRef_Impl(const ::ppapi::PPB_FileRef_CreateInfo& info,
- const FilePath& external_file_path);
+ const base::FilePath& external_file_path);
virtual ~PPB_FileRef_Impl();
// The returned object will have a refcount of 0 (just like "new").
@@ -36,7 +36,7 @@ class WEBKIT_GLUE_EXPORT PPB_FileRef_Impl
// The returned object will have a refcount of 0 (just like "new").
static PPB_FileRef_Impl* CreateExternal(PP_Instance instance,
- const FilePath& external_file_path,
+ const base::FilePath& external_file_path,
const std::string& display_name);
// PPB_FileRef_API implementation (not provided by PPB_FileRef_Shared).
@@ -59,7 +59,7 @@ class WEBKIT_GLUE_EXPORT PPB_FileRef_Impl
// Returns the system path corresponding to this file. Valid only for
// external filesystems.
- FilePath GetSystemPath() const;
+ base::FilePath GetSystemPath() const;
// Returns the FileSystem API URL corresponding to this file.
GURL GetFileSystemURL() const;
@@ -76,7 +76,7 @@ class WEBKIT_GLUE_EXPORT PPB_FileRef_Impl
scoped_refptr<PPB_FileSystem_Impl> file_system_;
// Used only for external filesystems.
- FilePath external_file_system_path_;
+ base::FilePath external_file_system_path_;
// Lazily initialized var created from the external path. This is so we can
// return the identical string object every time it is requested.
« no previous file with comments | « webkit/plugins/ppapi/ppb_directory_reader_impl.cc ('k') | webkit/plugins/ppapi/ppb_file_ref_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698