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

Unified Diff: chrome/browser/chromeos/extensions/file_manager/private_api_dialog.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_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 c333a154f1e8266b801299bd13f80c1ea5db8e7e..b06ec2c90a9b36950c57a2a7d3adadf842ed2bad 100644
--- a/chrome/browser/chromeos/extensions/file_manager/private_api_dialog.h
+++ b/chrome/browser/chromeos/extensions/file_manager/private_api_dialog.h
@@ -19,27 +19,27 @@ struct SelectedFileInfo;
namespace extensions {
// Cancel file selection Dialog. Closes the dialog window.
-class FileBrowserPrivateCancelDialogFunction
+class FileManagerPrivateCancelDialogFunction
: public LoggedAsyncExtensionFunction {
public:
- DECLARE_EXTENSION_FUNCTION("fileBrowserPrivate.cancelDialog",
- FILEBROWSERPRIVATE_CANCELDIALOG)
+ DECLARE_EXTENSION_FUNCTION("fileManagerPrivate.cancelDialog",
+ FILEMANAGERPRIVATE_CANCELDIALOG)
protected:
- virtual ~FileBrowserPrivateCancelDialogFunction() {}
+ virtual ~FileManagerPrivateCancelDialogFunction() {}
// AsyncExtensionFunction overrides.
virtual bool RunAsync() OVERRIDE;
};
-class FileBrowserPrivateSelectFileFunction
+class FileManagerPrivateSelectFileFunction
: public LoggedAsyncExtensionFunction {
public:
- DECLARE_EXTENSION_FUNCTION("fileBrowserPrivate.selectFile",
- FILEBROWSERPRIVATE_SELECTFILE)
+ DECLARE_EXTENSION_FUNCTION("fileManagerPrivate.selectFile",
+ FILEMANAGERPRIVATE_SELECTFILE)
protected:
- virtual ~FileBrowserPrivateSelectFileFunction() {}
+ virtual ~FileManagerPrivateSelectFileFunction() {}
// AsyncExtensionFunction overrides.
virtual bool RunAsync() OVERRIDE;
@@ -52,14 +52,14 @@ class FileBrowserPrivateSelectFileFunction
};
// Select multiple files. Closes the dialog window.
-class FileBrowserPrivateSelectFilesFunction
+class FileManagerPrivateSelectFilesFunction
: public LoggedAsyncExtensionFunction {
public:
- DECLARE_EXTENSION_FUNCTION("fileBrowserPrivate.selectFiles",
- FILEBROWSERPRIVATE_SELECTFILES)
+ DECLARE_EXTENSION_FUNCTION("fileManagerPrivate.selectFiles",
+ FILEMANAGERPRIVATE_SELECTFILES)
protected:
- virtual ~FileBrowserPrivateSelectFilesFunction() {}
+ virtual ~FileManagerPrivateSelectFilesFunction() {}
// AsyncExtensionFunction overrides.
virtual bool RunAsync() OVERRIDE;

Powered by Google App Engine
This is Rietveld 408576698