aboutsummaryrefslogtreecommitdiff
path: root/backends/cloud/onedrive/onedrivestorage.h
diff options
context:
space:
mode:
authorAlexander Tkachev2016-05-31 19:41:11 +0600
committerAlexander Tkachev2016-08-24 16:07:55 +0600
commit675e7a6ed1d19e64e2f80a4dd1f454e646cb52f5 (patch)
treecead5f18e92b5cfcf530b66dcd733c851acbfada /backends/cloud/onedrive/onedrivestorage.h
parentca85d4482af0b2e570565d5aa6d562ec86b10100 (diff)
downloadscummvm-rg350-675e7a6ed1d19e64e2f80a4dd1f454e646cb52f5.tar.gz
scummvm-rg350-675e7a6ed1d19e64e2f80a4dd1f454e646cb52f5.tar.bz2
scummvm-rg350-675e7a6ed1d19e64e2f80a4dd1f454e646cb52f5.zip
CLOUD: Move download methods into Storage
DownloadRequest and FolderDownloadRequest are using other Storage's methods. Thus, download() and downloadFolder() could be implemented in base Storage class.
Diffstat (limited to 'backends/cloud/onedrive/onedrivestorage.h')
-rw-r--r--backends/cloud/onedrive/onedrivestorage.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/backends/cloud/onedrive/onedrivestorage.h b/backends/cloud/onedrive/onedrivestorage.h
index 241b6a8742..49d63b98a6 100644
--- a/backends/cloud/onedrive/onedrivestorage.h
+++ b/backends/cloud/onedrive/onedrivestorage.h
@@ -87,12 +87,6 @@ public:
virtual Networking::Request *streamFile(Common::String path, Networking::NetworkReadStreamCallback callback, Networking::ErrorCallback errorCallback);
/** Calls the callback when finished. */
- virtual Networking::Request *download(Common::String remotePath, Common::String localPath, BoolCallback callback, Networking::ErrorCallback errorCallback);
-
- /** Returns Common::Array<StorageFile> with list of files, which were not downloaded. */
- virtual Networking::Request *downloadFolder(Common::String remotePath, Common::String localPath, FileArrayCallback callback, Networking::ErrorCallback errorCallback, bool recursive = false);
-
- /** Calls the callback when finished. */
virtual Networking::Request *remove(Common::String path, BoolCallback callback, Networking::ErrorCallback errorCallback) { return nullptr; } //TODO
/** Calls the callback when finished. */