summaryrefslogtreecommitdiff
path: root/src/mbgl/storage/http_request_baton.cpp
blob: d781a3bdf42e578a1bf60ca3b3f304127ede99b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include <mbgl/storage/http_request_baton.hpp>
#include <uv.h>

namespace mbgl {

HTTPRequestBaton::HTTPRequestBaton(const std::string &path_) : threadId(std::this_thread::get_id()), path(path_) {
}

HTTPRequestBaton::~HTTPRequestBaton() {
}

}