| Index: storage/browser/fileapi/plugin_private_file_system_backend.h
|
| diff --git a/storage/browser/fileapi/plugin_private_file_system_backend.h b/storage/browser/fileapi/plugin_private_file_system_backend.h
|
| index 95ffb647147ba762e3842fa65d18cb31127a9af4..89da39bf290b77b998dd1ab31874cd5c1551a8f1 100644
|
| --- a/storage/browser/fileapi/plugin_private_file_system_backend.h
|
| +++ b/storage/browser/fileapi/plugin_private_file_system_backend.h
|
| @@ -118,6 +118,15 @@ class STORAGE_EXPORT PluginPrivateFileSystemBackend
|
| const GURL& origin_url,
|
| FileSystemType type) override;
|
|
|
| + // Get details on the files saved for the specified |origin_url|. Returns
|
| + // the total size and last modified time for the set of all files stored
|
| + // for the particular origin. |total_size| = 0 and |last_modified_time| =
|
| + // base::Time::UnixEpoch() if no files found.
|
| + void GetOriginDetailsOnFileTaskRunner(FileSystemContext* context,
|
| + const GURL& origin_url,
|
| + int64_t* total_size,
|
| + base::Time* last_modified_time);
|
| +
|
| private:
|
| friend class content::PluginPrivateFileSystemBackendTest;
|
|
|
|
|