Index: chrome/browser/chromeos/extensions/file_manager/private_api_mount.h |
diff --git a/chrome/browser/chromeos/extensions/file_manager/private_api_mount.h b/chrome/browser/chromeos/extensions/file_manager/private_api_mount.h |
index 69c2d9d44aa71245d88bfdbadaded2f9a6c2685f..f6f67e2e56863abace9aef4a829e8822815a62f0 100644 |
--- a/chrome/browser/chromeos/extensions/file_manager/private_api_mount.h |
+++ b/chrome/browser/chromeos/extensions/file_manager/private_api_mount.h |
@@ -19,15 +19,15 @@ struct SelectedFileInfo; |
namespace extensions { |
-// Implements chrome.fileBrowserPrivate.addMount method. |
+// Implements chrome.fileManagerPrivate.addMount method. |
// Mounts removable devices and archive files. |
-class FileBrowserPrivateAddMountFunction : public LoggedAsyncExtensionFunction { |
+class FileManagerPrivateAddMountFunction : public LoggedAsyncExtensionFunction { |
public: |
- DECLARE_EXTENSION_FUNCTION("fileBrowserPrivate.addMount", |
- FILEBROWSERPRIVATE_ADDMOUNT) |
+ DECLARE_EXTENSION_FUNCTION("fileManagerPrivate.addMount", |
+ FILEMANAGERPRIVATE_ADDMOUNT) |
protected: |
- virtual ~FileBrowserPrivateAddMountFunction() {} |
+ virtual ~FileManagerPrivateAddMountFunction() {} |
// AsyncExtensionFunction overrides. |
virtual bool RunAsync() OVERRIDE; |
@@ -40,30 +40,30 @@ class FileBrowserPrivateAddMountFunction : public LoggedAsyncExtensionFunction { |
const base::FilePath& file_path); |
}; |
-// Implements chrome.fileBrowserPrivate.removeMount method. |
+// Implements chrome.fileManagerPrivate.removeMount method. |
// Unmounts selected volume. Expects volume id as an argument. |
-class FileBrowserPrivateRemoveMountFunction |
+class FileManagerPrivateRemoveMountFunction |
: public LoggedAsyncExtensionFunction { |
public: |
- DECLARE_EXTENSION_FUNCTION("fileBrowserPrivate.removeMount", |
- FILEBROWSERPRIVATE_REMOVEMOUNT) |
+ DECLARE_EXTENSION_FUNCTION("fileManagerPrivate.removeMount", |
+ FILEMANAGERPRIVATE_REMOVEMOUNT) |
protected: |
- virtual ~FileBrowserPrivateRemoveMountFunction() {} |
+ virtual ~FileManagerPrivateRemoveMountFunction() {} |
// AsyncExtensionFunction overrides. |
virtual bool RunAsync() OVERRIDE; |
}; |
-// Implements chrome.fileBrowserPrivate.getVolumeMetadataList method. |
-class FileBrowserPrivateGetVolumeMetadataListFunction |
+// Implements chrome.fileManagerPrivate.getVolumeMetadataList method. |
+class FileManagerPrivateGetVolumeMetadataListFunction |
: public LoggedAsyncExtensionFunction { |
public: |
- DECLARE_EXTENSION_FUNCTION("fileBrowserPrivate.getVolumeMetadataList", |
- FILEBROWSERPRIVATE_GETVOLUMEMETADATALIST) |
+ DECLARE_EXTENSION_FUNCTION("fileManagerPrivate.getVolumeMetadataList", |
+ FILEMANAGERPRIVATE_GETVOLUMEMETADATALIST) |
protected: |
- virtual ~FileBrowserPrivateGetVolumeMetadataListFunction() {} |
+ virtual ~FileManagerPrivateGetVolumeMetadataListFunction() {} |
// AsyncExtensionFunction overrides. |
virtual bool RunAsync() OVERRIDE; |