summaryrefslogtreecommitdiffstats
path: root/webkit/fileapi/file_system_operation_context.h
diff options
context:
space:
mode:
authorkmadhusu@chromium.org <kmadhusu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-11-02 07:18:06 +0000
committerkmadhusu@chromium.org <kmadhusu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-11-02 07:18:06 +0000
commit20f067e1c97ada685a266799302b72be841cc86b (patch)
tree35efbc32456297d16264e6c2a8a532cdf585dfe7 /webkit/fileapi/file_system_operation_context.h
parent654f7115c0bfbf1308dfb424e92da496e7170545 (diff)
downloadchromium_src-20f067e1c97ada685a266799302b72be841cc86b.zip
chromium_src-20f067e1c97ada685a266799302b72be841cc86b.tar.gz
chromium_src-20f067e1c97ada685a266799302b72be841cc86b.tar.bz2
[MediaGallery] Cleanup: Rename MtpDeviceDelegate* to MTPDeviceDelegate*.
Rename all function/class names to use "MTP" instead of "mtp" BUG=none TEST=none TBR=kinuko Review URL: https://chromiumcodereview.appspot.com/11364042 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@165639 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/fileapi/file_system_operation_context.h')
-rw-r--r--webkit/fileapi/file_system_operation_context.h6
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
};