Index: chrome/browser/chromeos/extensions/file_manager/file_browser_private_api.h |
diff --git a/chrome/browser/chromeos/extensions/file_manager/file_browser_private_api.h b/chrome/browser/chromeos/extensions/file_manager/file_browser_private_api.h |
index df7e69b79f32f01a3a5837b8ac332b69e3138df6..1a31b5375985c282df3f69534f81909fd29c7fd5 100644 |
--- a/chrome/browser/chromeos/extensions/file_manager/file_browser_private_api.h |
+++ b/chrome/browser/chromeos/extensions/file_manager/file_browser_private_api.h |
@@ -497,18 +497,18 @@ class FileDialogStringsFunction : public SyncExtensionFunction { |
virtual bool RunImpl() OVERRIDE; |
}; |
-// Retrieves property information for a file and returns it as a dictionary. |
+// Retrieves property information for an entry and returns it as a dictionary. |
// On error, returns a dictionary with the key "error" set to the error number |
// (drive::FileError). |
-class GetDriveFilePropertiesFunction : public FileBrowserFunction { |
+class GetDriveEntryPropertiesFunction : public FileBrowserFunction { |
public: |
- DECLARE_EXTENSION_FUNCTION("fileBrowserPrivate.getDriveFileProperties", |
+ DECLARE_EXTENSION_FUNCTION("fileBrowserPrivate.getDriveEntryProperties", |
FILEBROWSERPRIVATE_GETDRIVEFILEPROPERTIES) |
- GetDriveFilePropertiesFunction(); |
+ GetDriveEntryPropertiesFunction(); |
protected: |
- virtual ~GetDriveFilePropertiesFunction(); |
+ virtual ~GetDriveEntryPropertiesFunction(); |
// AsyncExtensionFunction overrides. |
virtual bool RunImpl() OVERRIDE; |