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

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

Issue 23715003: Files.app: Rename the FileBrowserPrivateAPI's functions. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressed the comments. Created 7 years, 4 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 4d44df6a1599da5469b85acbee341d593ce709c0..f12f68dc5e7921f3d0bf8b4e1e2698afcb0d12d6 100644
--- a/chrome/browser/chromeos/extensions/file_manager/private_api_mount.h
+++ b/chrome/browser/chromeos/extensions/file_manager/private_api_mount.h
@@ -22,15 +22,15 @@ namespace extensions {
// Implements chrome.fileBrowserPrivate.addMount method.
// Mounts a device or a file.
-class AddMountFunction : public LoggedAsyncExtensionFunction {
+class FileBrowserPrivateAddMountFunction : public LoggedAsyncExtensionFunction {
public:
DECLARE_EXTENSION_FUNCTION("fileBrowserPrivate.addMount",
FILEBROWSERPRIVATE_ADDMOUNT)
- AddMountFunction();
+ FileBrowserPrivateAddMountFunction();
protected:
- virtual ~AddMountFunction();
+ virtual ~FileBrowserPrivateAddMountFunction();
// AsyncExtensionFunction overrides.
virtual bool RunImpl() OVERRIDE;
@@ -45,15 +45,16 @@ class AddMountFunction : public LoggedAsyncExtensionFunction {
// Implements chrome.fileBrowserPrivate.removeMount method.
// Unmounts selected device. Expects mount point path as an argument.
-class RemoveMountFunction : public LoggedAsyncExtensionFunction {
+class FileBrowserPrivateRemoveMountFunction
+ : public LoggedAsyncExtensionFunction {
public:
DECLARE_EXTENSION_FUNCTION("fileBrowserPrivate.removeMount",
FILEBROWSERPRIVATE_REMOVEMOUNT)
- RemoveMountFunction();
+ FileBrowserPrivateRemoveMountFunction();
protected:
- virtual ~RemoveMountFunction();
+ virtual ~FileBrowserPrivateRemoveMountFunction();
// AsyncExtensionFunction overrides.
virtual bool RunImpl() OVERRIDE;
@@ -65,15 +66,16 @@ class RemoveMountFunction : public LoggedAsyncExtensionFunction {
};
// Implements chrome.fileBrowserPrivate.getMountPoints method.
-class GetMountPointsFunction : public LoggedAsyncExtensionFunction {
+class FileBrowserPrivateGetMountPointsFunction
+ : public LoggedAsyncExtensionFunction {
public:
DECLARE_EXTENSION_FUNCTION("fileBrowserPrivate.getMountPoints",
FILEBROWSERPRIVATE_GETMOUNTPOINTS)
- GetMountPointsFunction();
+ FileBrowserPrivateGetMountPointsFunction();
protected:
- virtual ~GetMountPointsFunction();
+ virtual ~FileBrowserPrivateGetMountPointsFunction();
// AsyncExtensionFunction overrides.
virtual bool RunImpl() OVERRIDE;

Powered by Google App Engine
This is Rietveld 408576698