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

Unified Diff: chrome/browser/extensions/api/file_system/file_system_api.h

Issue 10914284: Rename chrome.fileSystem apis to be expandable to directories if we wish. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Typo Created 8 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
« no previous file with comments | « no previous file | chrome/browser/extensions/api/file_system/file_system_api.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/extensions/api/file_system/file_system_api.h
diff --git a/chrome/browser/extensions/api/file_system/file_system_api.h b/chrome/browser/extensions/api/file_system/file_system_api.h
index eee8f15b55c870bc400b875fab347b1fc51f6247..0e7cbfd709a2e59ef90b709ae977ae69829f388e 100644
--- a/chrome/browser/extensions/api/file_system/file_system_api.h
+++ b/chrome/browser/extensions/api/file_system/file_system_api.h
@@ -46,32 +46,32 @@ class FileSystemEntryFunction : public AsyncExtensionFunction {
void HandleWritableFileError();
};
-class FileSystemGetWritableFileEntryFunction : public FileSystemEntryFunction {
+class FileSystemGetWritableEntryFunction : public FileSystemEntryFunction {
public:
- DECLARE_EXTENSION_FUNCTION_NAME("fileSystem.getWritableFileEntry");
+ DECLARE_EXTENSION_FUNCTION_NAME("fileSystem.getWritableEntry");
protected:
- virtual ~FileSystemGetWritableFileEntryFunction() {}
+ virtual ~FileSystemGetWritableEntryFunction() {}
virtual bool RunImpl() OVERRIDE;
};
-class FileSystemIsWritableFileEntryFunction : public SyncExtensionFunction {
+class FileSystemIsWritableEntryFunction : public SyncExtensionFunction {
public:
- DECLARE_EXTENSION_FUNCTION_NAME("fileSystem.isWritableFileEntry");
+ DECLARE_EXTENSION_FUNCTION_NAME("fileSystem.isWritableEntry");
protected:
- virtual ~FileSystemIsWritableFileEntryFunction() {}
+ virtual ~FileSystemIsWritableEntryFunction() {}
virtual bool RunImpl() OVERRIDE;
};
-class FileSystemChooseFileFunction : public FileSystemEntryFunction {
+class FileSystemChooseEntryFunction : public FileSystemEntryFunction {
public:
// Allow picker UI to be skipped in testing.
static void SkipPickerAndAlwaysSelectPathForTest(FilePath* path);
static void SkipPickerAndAlwaysCancelForTest();
static void StopSkippingPickerForTest();
- DECLARE_EXTENSION_FUNCTION_NAME("fileSystem.chooseFile");
+ DECLARE_EXTENSION_FUNCTION_NAME("fileSystem.chooseEntry");
typedef std::vector<linked_ptr<extensions::api::file_system::AcceptOption> >
AcceptOptions;
@@ -88,7 +88,7 @@ class FileSystemChooseFileFunction : public FileSystemEntryFunction {
protected:
class FilePicker;
- virtual ~FileSystemChooseFileFunction() {}
+ virtual ~FileSystemChooseEntryFunction() {}
virtual bool RunImpl() OVERRIDE;
bool ShowPicker(const FilePath& suggested_path,
const ui::SelectFileDialog::FileTypeInfo& file_type_info,
« no previous file with comments | « no previous file | chrome/browser/extensions/api/file_system/file_system_api.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698