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

Unified Diff: chrome/browser/chromeos/extensions/file_manager/private_api_tasks.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_tasks.h
diff --git a/chrome/browser/chromeos/extensions/file_manager/private_api_tasks.h b/chrome/browser/chromeos/extensions/file_manager/private_api_tasks.h
index 92d5b1ff2b416a1fcb883402a56c962b65c7e157..ad376d7fd901d0a317dbee89e664c467950e2fa6 100644
--- a/chrome/browser/chromeos/extensions/file_manager/private_api_tasks.h
+++ b/chrome/browser/chromeos/extensions/file_manager/private_api_tasks.h
@@ -23,15 +23,16 @@ class DriveAppRegistry;
namespace extensions {
// Implements the chrome.fileBrowserPrivate.executeTask method.
-class ExecuteTaskFunction : public LoggedAsyncExtensionFunction {
+class FileBrowserPrivateExecuteTaskFunction
+ : public LoggedAsyncExtensionFunction {
public:
DECLARE_EXTENSION_FUNCTION("fileBrowserPrivate.executeTask",
FILEBROWSERPRIVATE_EXECUTETASK)
- ExecuteTaskFunction();
+ FileBrowserPrivateExecuteTaskFunction();
protected:
- virtual ~ExecuteTaskFunction();
+ virtual ~FileBrowserPrivateExecuteTaskFunction();
// AsyncExtensionFunction overrides.
virtual bool RunImpl() OVERRIDE;
@@ -40,30 +41,31 @@ class ExecuteTaskFunction : public LoggedAsyncExtensionFunction {
};
// Implements the chrome.fileBrowserPrivate.getFileTasks method.
-class GetFileTasksFunction : public LoggedAsyncExtensionFunction {
+class FileBrowserPrivateGetFileTasksFunction
+ : public LoggedAsyncExtensionFunction {
public:
DECLARE_EXTENSION_FUNCTION("fileBrowserPrivate.getFileTasks",
FILEBROWSERPRIVATE_GETFILETASKS)
- GetFileTasksFunction();
+ FileBrowserPrivateGetFileTasksFunction();
protected:
- virtual ~GetFileTasksFunction();
+ virtual ~FileBrowserPrivateGetFileTasksFunction();
// AsyncExtensionFunction overrides.
virtual bool RunImpl() OVERRIDE;
};
// Implements the chrome.fileBrowserPrivate.setDefaultTask method.
-class SetDefaultTaskFunction : public SyncExtensionFunction {
+class FileBrowserPrivateSetDefaultTaskFunction : public SyncExtensionFunction {
public:
DECLARE_EXTENSION_FUNCTION("fileBrowserPrivate.setDefaultTask",
FILEBROWSERPRIVATE_SETDEFAULTTASK)
- SetDefaultTaskFunction();
+ FileBrowserPrivateSetDefaultTaskFunction();
protected:
- virtual ~SetDefaultTaskFunction();
+ virtual ~FileBrowserPrivateSetDefaultTaskFunction();
// SyncExtensionFunction overrides.
virtual bool RunImpl() OVERRIDE;

Powered by Google App Engine
This is Rietveld 408576698