diff options
Diffstat (limited to 'webkit/fileapi/media/mtp_device_map_service.cc')
-rw-r--r-- | webkit/fileapi/media/mtp_device_map_service.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/webkit/fileapi/media/mtp_device_map_service.cc b/webkit/fileapi/media/mtp_device_map_service.cc index 7316068..758a913 100644 --- a/webkit/fileapi/media/mtp_device_map_service.cc +++ b/webkit/fileapi/media/mtp_device_map_service.cc @@ -26,7 +26,7 @@ MTPDeviceMapService* MTPDeviceMapService::GetInstance() { } void MTPDeviceMapService::AddDelegate( - const FilePath::StringType& device_location, + const base::FilePath::StringType& device_location, MTPDeviceDelegate* delegate) { DCHECK(delegate); DCHECK(!device_location.empty()); @@ -38,7 +38,7 @@ void MTPDeviceMapService::AddDelegate( } void MTPDeviceMapService::RemoveDelegate( - const FilePath::StringType& device_location) { + const base::FilePath::StringType& device_location) { base::AutoLock lock(lock_); DelegateMap::iterator it = delegate_map_.find(device_location); DCHECK(it != delegate_map_.end()); @@ -48,13 +48,13 @@ void MTPDeviceMapService::RemoveDelegate( MTPDeviceDelegate* MTPDeviceMapService::GetMTPDeviceDelegate( const std::string& filesystem_id) { - FilePath device_path; + base::FilePath device_path; if (!IsolatedContext::GetInstance()->GetRegisteredPath(filesystem_id, &device_path)) { return NULL; } - const FilePath::StringType& device_location = device_path.value(); + const base::FilePath::StringType& device_location = device_path.value(); DCHECK(!device_location.empty()); base::AutoLock lock(lock_); |