diff options
Diffstat (limited to 'webkit/fileapi/file_system_operation_context.h')
-rw-r--r-- | webkit/fileapi/file_system_operation_context.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/webkit/fileapi/file_system_operation_context.h b/webkit/fileapi/file_system_operation_context.h index b376b21..067e0d8 100644 --- a/webkit/fileapi/file_system_operation_context.h +++ b/webkit/fileapi/file_system_operation_context.h @@ -38,11 +38,11 @@ class WEBKIT_STORAGE_EXPORT_PRIVATE FileSystemOperationContext { int64 allowed_bytes_growth() const { return allowed_bytes_growth_; } #if defined(SUPPORT_MTP_DEVICE_FILESYSTEM) - void set_mtp_device_delegate(MtpDeviceDelegate* delegate) { + void set_mtp_device_delegate(MTPDeviceDelegate* delegate) { mtp_device_delegate_ = delegate; } - MtpDeviceDelegate* mtp_device_delegate() const { + MTPDeviceDelegate* mtp_device_delegate() const { return mtp_device_delegate_.get(); } #endif @@ -92,7 +92,7 @@ class WEBKIT_STORAGE_EXPORT_PRIVATE FileSystemOperationContext { #if defined(SUPPORT_MTP_DEVICE_FILESYSTEM) // Store the current mtp device delegate. - scoped_refptr<MtpDeviceDelegate> mtp_device_delegate_; + scoped_refptr<MTPDeviceDelegate> mtp_device_delegate_; #endif }; |