diff options
Diffstat (limited to 'chrome/browser/chromeos/drive/drive_file_system_interface.h')
-rw-r--r-- | chrome/browser/chromeos/drive/drive_file_system_interface.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/chrome/browser/chromeos/drive/drive_file_system_interface.h b/chrome/browser/chromeos/drive/drive_file_system_interface.h index 867ed6b..4b115eb 100644 --- a/chrome/browser/chromeos/drive/drive_file_system_interface.h +++ b/chrome/browser/chromeos/drive/drive_file_system_interface.h @@ -360,8 +360,12 @@ class DriveFileSystemInterface { const FilePath& file_content_path, const base::Closure& callback) = 0; - // Returns metadata of the file system. + // Returns miscellaneous metadata of the file system like the largest + // timestamp. Used in chrome:drive-internals. virtual DriveFileSystemMetadata GetMetadata() const = 0; + + // Reloads the file system feeds from the server. + virtual void Reload() = 0; }; } // namespace drive |