summaryrefslogtreecommitdiff
path: root/src/mbgl/storage/http_context_base.hpp
diff options
context:
space:
mode:
authorJohn Firebaugh <john.firebaugh@gmail.com>2016-02-15 17:35:13 -0800
committerJohn Firebaugh <john.firebaugh@gmail.com>2016-04-14 14:18:19 -0700
commit3af3e72bb3cb3f05b33be304d59e66cc244ef4d9 (patch)
treeef1d237c3083694307081c219c9da94ae43fe540 /src/mbgl/storage/http_context_base.hpp
parent6d88a23a60bc0a6dc9945bf09a659d15dd827192 (diff)
downloadqtlocation-mapboxgl-3af3e72bb3cb3f05b33be304d59e66cc244ef4d9.tar.gz
[all] Replace HTTPContextBase/HTTPRequestBase with FileSource
Diffstat (limited to 'src/mbgl/storage/http_context_base.hpp')
-rw-r--r--src/mbgl/storage/http_context_base.hpp22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/mbgl/storage/http_context_base.hpp b/src/mbgl/storage/http_context_base.hpp
deleted file mode 100644
index 6615ea00cf..0000000000
--- a/src/mbgl/storage/http_context_base.hpp
+++ /dev/null
@@ -1,22 +0,0 @@
-#ifndef MBGL_STORAGE_HTTP_CONTEXT_BASE
-#define MBGL_STORAGE_HTTP_CONTEXT_BASE
-
-#include <mbgl/storage/http_request_base.hpp>
-#include <mbgl/storage/network_status.hpp>
-
-#include <set>
-
-namespace mbgl {
-
-class HTTPContextBase {
-public:
- static std::unique_ptr<HTTPContextBase> createContext();
- static uint32_t maximumConcurrentRequests();
-
- virtual ~HTTPContextBase() = default;
- virtual HTTPRequestBase* createRequest(const Resource&, HTTPRequestBase::Callback) = 0;
-};
-
-} // namespace mbgl
-
-#endif // MBGL_STORAGE_HTTP_CONTEXT_BASE