summaryrefslogtreecommitdiff
path: root/include/mbgl/storage/file_source.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/mbgl/storage/file_source.hpp')
-rw-r--r--include/mbgl/storage/file_source.hpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/include/mbgl/storage/file_source.hpp b/include/mbgl/storage/file_source.hpp
index 3b19e00788..a53bf31c2c 100644
--- a/include/mbgl/storage/file_source.hpp
+++ b/include/mbgl/storage/file_source.hpp
@@ -9,8 +9,6 @@
#include <functional>
-typedef struct uv_loop_s uv_loop_t;
-
namespace mbgl {
class Request;
@@ -26,7 +24,7 @@ public:
// These can be called from any thread. The callback will be invoked in the loop.
// You can only cancel a request from the same thread it was created in.
- virtual Request* request(const Resource&, uv_loop_t*, Callback) = 0;
+ virtual Request* request(const Resource&, Callback) = 0;
virtual void cancel(Request*) = 0;
};