aboutsummaryrefslogtreecommitdiff
path: root/backends/cloud/onedrive/onedrivestorage.h
diff options
context:
space:
mode:
authorAlexander Tkachev2016-06-01 12:08:47 +0600
committerAlexander Tkachev2016-08-24 16:07:55 +0600
commit4b3a8be0b9db448971e6095a24501c66714c484f (patch)
treef6206c441e029d361d37dd8cb9b0acb1329218cd /backends/cloud/onedrive/onedrivestorage.h
parent06163cb8b907e30f8463b2b9700d136c73b19a33 (diff)
downloadscummvm-rg350-4b3a8be0b9db448971e6095a24501c66714c484f.tar.gz
scummvm-rg350-4b3a8be0b9db448971e6095a24501c66714c484f.tar.bz2
scummvm-rg350-4b3a8be0b9db448971e6095a24501c66714c484f.zip
CLOUD: Shorten Cloud API
touch() and isSyncing() are not needed. remove() is not needed too, but it could be used in the future.
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 8fc7b2ac4d..5edd96e59c 100644
--- a/backends/cloud/onedrive/onedrivestorage.h
+++ b/backends/cloud/onedrive/onedrivestorage.h
@@ -92,18 +92,12 @@ public:
/** Calls the callback when finished. */
virtual Networking::Request *createDirectory(Common::String path, BoolCallback callback, Networking::ErrorCallback errorCallback);
- /** Calls the callback when finished. */
- virtual Networking::Request *touch(Common::String path, BoolCallback callback, Networking::ErrorCallback errorCallback) { return nullptr; } //TODO
-
/** Returns the StorageInfo struct. */
virtual Networking::Request *info(StorageInfoCallback callback, Networking::ErrorCallback errorCallback);
/** Returns storage's saves directory path with the trailing slash. */
virtual Common::String savesDirectoryPath();
- /** Returns whether saves sync process is running. */
- virtual bool isSyncing() { return false; } //TODO
-
/** Returns whether there are any requests running. */
virtual bool isWorking() { return false; } //TODO