summaryrefslogtreecommitdiff
path: root/src/mbgl/storage/http_context_base.hpp
diff options
context:
space:
mode:
authorJohn Firebaugh <john.firebaugh@gmail.com>2016-01-15 12:36:15 -0800
committerJohn Firebaugh <john.firebaugh@gmail.com>2016-01-21 11:22:11 -0800
commit1766d7dcbf9482ceac9bff37e0f7f5a4c60b9123 (patch)
treebf4674142fbfe581c4328dc04641fcaf6b44d133 /src/mbgl/storage/http_context_base.hpp
parent0a2e4af4c5d34a394fd6c32d771f2e8ae92a387c (diff)
downloadqtlocation-mapboxgl-1766d7dcbf9482ceac9bff37e0f7f5a4c60b9123.tar.gz
[core] Eliminate RequestBase
HTTPRequestBase can now itself be the base class.
Diffstat (limited to 'src/mbgl/storage/http_context_base.hpp')
-rw-r--r--src/mbgl/storage/http_context_base.hpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mbgl/storage/http_context_base.hpp b/src/mbgl/storage/http_context_base.hpp
index f2d15e2918..a1a3f5b597 100644
--- a/src/mbgl/storage/http_context_base.hpp
+++ b/src/mbgl/storage/http_context_base.hpp
@@ -1,7 +1,6 @@
#ifndef MBGL_STORAGE_HTTP_CONTEXT_BASE
#define MBGL_STORAGE_HTTP_CONTEXT_BASE
-#include <mbgl/storage/request_base.hpp>
#include <mbgl/storage/http_request_base.hpp>
#include <mbgl/storage/network_status.hpp>
@@ -15,7 +14,7 @@ public:
virtual ~HTTPContextBase() = default;
virtual HTTPRequestBase* createRequest(const std::string& url,
- RequestBase::Callback,
+ HTTPRequestBase::Callback,
std::shared_ptr<const Response>) = 0;
};