diff options
author | Alexander Tkachev | 2016-07-13 14:57:01 +0600 |
---|---|---|
committer | Alexander Tkachev | 2016-08-24 16:07:55 +0600 |
commit | 2b3caf1efadd2a68384978e77cfceab158c703f3 (patch) | |
tree | e694877b876d6fdf578f1c9e9a73ea6b2ebbfe75 /backends/module.mk | |
parent | e0a6b2135de6a83f2ed4177c96fabf216412e5fb (diff) | |
download | scummvm-rg350-2b3caf1efadd2a68384978e77cfceab158c703f3.tar.gz scummvm-rg350-2b3caf1efadd2a68384978e77cfceab158c703f3.tar.bz2 scummvm-rg350-2b3caf1efadd2a68384978e77cfceab158c703f3.zip |
CLOUD: Add IdStorage
This is a special base class for Storages which are using ids instead of
paths in their APIs, like Box or Google Drive.
This commit makes Box derived from IdStorage.
Diffstat (limited to 'backends/module.mk')
-rw-r--r-- | backends/module.mk | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/backends/module.mk b/backends/module.mk index 53eca87131..3c3b343e98 100644 --- a/backends/module.mk +++ b/backends/module.mk @@ -30,8 +30,6 @@ MODULE_OBJS += \ cloud/savessyncrequest.o \ cloud/box/boxstorage.o \ cloud/box/boxlistdirectorybyidrequest.o \ - cloud/box/boxlistdirectoryrequest.o \ - cloud/box/boxresolveidrequest.o \ cloud/box/boxtokenrefresher.o \ cloud/dropbox/dropboxstorage.o \ cloud/dropbox/dropboxcreatedirectoryrequest.o \ @@ -46,6 +44,9 @@ MODULE_OBJS += \ cloud/googledrive/googledrivestreamfilerequest.o \ cloud/googledrive/googledrivetokenrefresher.o \ cloud/googledrive/googledriveuploadrequest.o \ + cloud/id/idstorage.o \ + cloud/id/idlistdirectoryrequest.o \ + cloud/id/idresolveidrequest.o \ cloud/onedrive/onedrivestorage.o \ cloud/onedrive/onedrivecreatedirectoryrequest.o \ cloud/onedrive/onedrivetokenrefresher.o \ |