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

Unified Diff: chrome/browser/chromeos/extensions/file_manager/private_api_dialog.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_dialog.h
diff --git a/chrome/browser/chromeos/extensions/file_manager/private_api_dialog.h b/chrome/browser/chromeos/extensions/file_manager/private_api_dialog.h
index 119530e80c3369f4f61182b582d7721eb359d3af..5d2366638ad2dd532c8ac93726045cb252abb40d 100644
--- a/chrome/browser/chromeos/extensions/file_manager/private_api_dialog.h
+++ b/chrome/browser/chromeos/extensions/file_manager/private_api_dialog.h
@@ -18,29 +18,31 @@ struct SelectedFileInfo;
namespace extensions {
// Cancel file selection Dialog. Closes the dialog window.
-class CancelFileDialogFunction : public LoggedAsyncExtensionFunction {
+class FileBrowserPrivateCancelDialogFunction
+ : public LoggedAsyncExtensionFunction {
public:
DECLARE_EXTENSION_FUNCTION("fileBrowserPrivate.cancelDialog",
FILEBROWSERPRIVATE_CANCELDIALOG)
- CancelFileDialogFunction();
+ FileBrowserPrivateCancelDialogFunction();
protected:
- virtual ~CancelFileDialogFunction();
+ virtual ~FileBrowserPrivateCancelDialogFunction();
// AsyncExtensionFunction overrides.
virtual bool RunImpl() OVERRIDE;
};
-class SelectFileFunction : public LoggedAsyncExtensionFunction {
+class FileBrowserPrivateSelectFileFunction
+ : public LoggedAsyncExtensionFunction {
public:
DECLARE_EXTENSION_FUNCTION("fileBrowserPrivate.selectFile",
FILEBROWSERPRIVATE_SELECTFILE)
- SelectFileFunction();
+ FileBrowserPrivateSelectFileFunction();
protected:
- virtual ~SelectFileFunction();
+ virtual ~FileBrowserPrivateSelectFileFunction();
// AsyncExtensionFunction overrides.
virtual bool RunImpl() OVERRIDE;
@@ -52,15 +54,16 @@ class SelectFileFunction : public LoggedAsyncExtensionFunction {
};
// Select multiple files. Closes the dialog window.
-class SelectFilesFunction : public LoggedAsyncExtensionFunction {
+class FileBrowserPrivateSelectFilesFunction
+ : public LoggedAsyncExtensionFunction {
public:
DECLARE_EXTENSION_FUNCTION("fileBrowserPrivate.selectFiles",
FILEBROWSERPRIVATE_SELECTFILES)
- SelectFilesFunction();
+ FileBrowserPrivateSelectFilesFunction();
protected:
- virtual ~SelectFilesFunction();
+ virtual ~FileBrowserPrivateSelectFilesFunction();
// AsyncExtensionFunction overrides.
virtual bool RunImpl() OVERRIDE;

Powered by Google App Engine
This is Rietveld 408576698