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

Unified Diff: chrome/browser/chromeos/extensions/file_manager/private_api_mount.h

Issue 550863003: Rename fileBrowserPrivate to fileManagerPrivate (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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/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;

Powered by Google App Engine
This is Rietveld 408576698