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

Unified Diff: chrome/browser/media_gallery/media_file_system_context.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
Index: chrome/browser/media_gallery/media_file_system_context.h
diff --git a/chrome/browser/media_gallery/media_file_system_context.h b/chrome/browser/media_gallery/media_file_system_context.h
index 09259908ffbfad0ef948a63ff25d6cea7590a3a1..1714732977082298bfe18dd22f7fbb7fba40c080 100644
--- a/chrome/browser/media_gallery/media_file_system_context.h
+++ b/chrome/browser/media_gallery/media_file_system_context.h
@@ -13,7 +13,9 @@
#include "chrome/browser/media_gallery/scoped_mtp_device_map_entry.h"
#include "webkit/fileapi/media/mtp_device_file_system_config.h"
+namespace base {
class FilePath;
+}
namespace chrome {
@@ -26,14 +28,14 @@ class MediaFileSystemContext {
// Register a media file system (filtered to media files) for |path| and
// return the new file system id.
virtual std::string RegisterFileSystemForMassStorage(
- const std::string& device_id, const FilePath& path) = 0;
+ const std::string& device_id, const base::FilePath& path) = 0;
#if defined(SUPPORT_MTP_DEVICE_FILESYSTEM)
// Registers and returns the file system id for the MTP or PTP device
// specified by |device_id| and |path|. Updates |entry| with the corresponding
// ScopedMTPDeviceMapEntry object.
virtual std::string RegisterFileSystemForMTPDevice(
- const std::string& device_id, const FilePath& path,
+ const std::string& device_id, const base::FilePath& path,
scoped_refptr<ScopedMTPDeviceMapEntry>* entry) = 0;
#endif

Powered by Google App Engine
This is Rietveld 408576698