summaryrefslogtreecommitdiff
path: root/include/mbgl/storage
diff options
context:
space:
mode:
Diffstat (limited to 'include/mbgl/storage')
-rw-r--r--include/mbgl/storage/caching_http_file_source.hpp2
-rw-r--r--include/mbgl/storage/file_source.hpp4
-rw-r--r--include/mbgl/storage/http_request_baton.hpp2
-rw-r--r--include/mbgl/storage/request.hpp4
4 files changed, 6 insertions, 6 deletions
diff --git a/include/mbgl/storage/caching_http_file_source.hpp b/include/mbgl/storage/caching_http_file_source.hpp
index a093ef2441..08fd5b50cb 100644
--- a/include/mbgl/storage/caching_http_file_source.hpp
+++ b/include/mbgl/storage/caching_http_file_source.hpp
@@ -1,7 +1,7 @@
#ifndef MBGL_STORAGE_CACHING_HTTP_FILE_SOURCE
#define MBGL_STORAGE_CACHING_HTTP_FILE_SOURCE
-#include "file_source.hpp"
+#include <mbgl/storage/file_source.hpp>
#include <thread>
#include <unordered_map>
diff --git a/include/mbgl/storage/file_source.hpp b/include/mbgl/storage/file_source.hpp
index eeda529bf1..accdc3c499 100644
--- a/include/mbgl/storage/file_source.hpp
+++ b/include/mbgl/storage/file_source.hpp
@@ -2,8 +2,8 @@
#define MBGL_STORAGE_FILE_SOURCE
#include <mbgl/util/noncopyable.hpp>
-#include "resource_type.hpp"
-#include "request.hpp"
+#include <mbgl/storage/resource_type.hpp>
+#include <mbgl/storage/request.hpp>
#include <string>
#include <functional>
diff --git a/include/mbgl/storage/http_request_baton.hpp b/include/mbgl/storage/http_request_baton.hpp
index 74c0ff498e..545f9e236c 100644
--- a/include/mbgl/storage/http_request_baton.hpp
+++ b/include/mbgl/storage/http_request_baton.hpp
@@ -1,7 +1,7 @@
#ifndef MBGL_STORAGE_HTTP_REQUEST_BATON
#define MBGL_STORAGE_HTTP_REQUEST_BATON
-#include "response.hpp"
+#include <mbgl/storage/response.hpp>
#include <mbgl/util/ptr.hpp>
#include <string>
diff --git a/include/mbgl/storage/request.hpp b/include/mbgl/storage/request.hpp
index f63283aa2f..845c9a6dad 100644
--- a/include/mbgl/storage/request.hpp
+++ b/include/mbgl/storage/request.hpp
@@ -1,8 +1,8 @@
#ifndef MBGL_STORAGE_REQUEST
#define MBGL_STORAGE_REQUEST
-#include "request_callback.hpp"
-#include "response.hpp"
+#include <mbgl/storage/request_callback.hpp>
+#include <mbgl/storage/response.hpp>
#include <mbgl/util/ptr.hpp>