aboutsummaryrefslogtreecommitdiff
path: root/backends/cloud/dropbox
diff options
context:
space:
mode:
Diffstat (limited to 'backends/cloud/dropbox')
-rw-r--r--backends/cloud/dropbox/dropboxlistdirectoryrequest.cpp4
-rw-r--r--backends/cloud/dropbox/dropboxlistdirectoryrequest.h4
-rw-r--r--backends/cloud/dropbox/dropboxstorage.cpp4
-rw-r--r--backends/cloud/dropbox/dropboxstorage.h35
4 files changed, 23 insertions, 24 deletions
diff --git a/backends/cloud/dropbox/dropboxlistdirectoryrequest.cpp b/backends/cloud/dropbox/dropboxlistdirectoryrequest.cpp
index 04fbf46ac6..6ea90c150d 100644
--- a/backends/cloud/dropbox/dropboxlistdirectoryrequest.cpp
+++ b/backends/cloud/dropbox/dropboxlistdirectoryrequest.cpp
@@ -136,5 +136,5 @@ void DropboxListDirectoryRequest::finishFiles(Common::Array<StorageFile> &files)
if (_filesCallback) (*_filesCallback)(Storage::FileArrayResponse(this, files));
}
-} //end of namespace Dropbox
-} //end of namespace Cloud
+} // End of namespace Dropbox
+} // End of namespace Cloud
diff --git a/backends/cloud/dropbox/dropboxlistdirectoryrequest.h b/backends/cloud/dropbox/dropboxlistdirectoryrequest.h
index e2a9ebf3a4..8539be1e1e 100644
--- a/backends/cloud/dropbox/dropboxlistdirectoryrequest.h
+++ b/backends/cloud/dropbox/dropboxlistdirectoryrequest.h
@@ -55,7 +55,7 @@ public:
virtual void finish();
};
-} //end of namespace Dropbox
-} //end of namespace Cloud
+} // End of namespace Dropbox
+} // End of namespace Cloud
#endif
diff --git a/backends/cloud/dropbox/dropboxstorage.cpp b/backends/cloud/dropbox/dropboxstorage.cpp
index ad6702c967..b1dd865ee2 100644
--- a/backends/cloud/dropbox/dropboxstorage.cpp
+++ b/backends/cloud/dropbox/dropboxstorage.cpp
@@ -248,5 +248,5 @@ void DropboxStorage::getAccessToken(Common::String code) {
ConnMan.addRequest(request);
}
-} //end of namespace Dropbox
-} //end of namespace Cloud
+} // End of namespace Dropbox
+} // End of namespace Cloud
diff --git a/backends/cloud/dropbox/dropboxstorage.h b/backends/cloud/dropbox/dropboxstorage.h
index 59dea9d210..da508d7844 100644
--- a/backends/cloud/dropbox/dropboxstorage.h
+++ b/backends/cloud/dropbox/dropboxstorage.h
@@ -51,17 +51,16 @@ public:
virtual ~DropboxStorage();
/**
- * Storage methods, which are used by CloudManager to save
- * storage in configuration file.
- */
+ * Storage methods, which are used by CloudManager to save
+ * storage in configuration file.
+ */
/**
- * Save storage data using ConfMan.
- * @param keyPrefix all saved keys must start with this prefix.
- * @note every Storage must write keyPrefix + "type" key
- * with common value (e.g. "Dropbox").
- */
-
+ * Save storage data using ConfMan.
+ * @param keyPrefix all saved keys must start with this prefix.
+ * @note every Storage must write keyPrefix + "type" key
+ * with common value (e.g. "Dropbox").
+ */
virtual void saveConfig(Common::String keyPrefix);
/** Public Cloud API comes down there. */
@@ -106,23 +105,23 @@ public:
virtual bool isWorking() { return false; } //TODO
/**
- * Load token and user id from configs and return DropboxStorage for those.
- * @return pointer to the newly created DropboxStorage or 0 if some problem occured.
- */
+ * Load token and user id from configs and return DropboxStorage for those.
+ * @return pointer to the newly created DropboxStorage or 0 if some problem occured.
+ */
static DropboxStorage *loadFromConfig(Common::String keyPrefix);
/**
- * Returns Dropbox auth link.
- */
+ * Returns Dropbox auth link.
+ */
static Common::String getAuthLink();
/**
- * Show message with Dropbox auth instructions. (Temporary)
- */
+ * Show message with Dropbox auth instructions. (Temporary)
+ */
static void authThroughConsole();
};
-} //end of namespace Dropbox
-} //end of namespace Cloud
+} // End of namespace Dropbox
+} // End of namespace Cloud
#endif