summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/mbgl/storage/default/request.hpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/mbgl/storage/default/request.hpp b/include/mbgl/storage/default/request.hpp
index 0ed544093c..9253378009 100644
--- a/include/mbgl/storage/default/request.hpp
+++ b/include/mbgl/storage/default/request.hpp
@@ -32,6 +32,10 @@ public:
void cancel();
private:
+ static void notifyCallback(uv_async_t *async, int);
+ static void cancelCallback(uv_async_t *async, int);
+
+private:
uv_async_t *notify_async = nullptr;
uv_async_t *destruct_async = nullptr;
Callback callback;