summaryrefslogtreecommitdiff
path: root/src/storage/http_request_baton.cpp
blob: 02edae748f23f8474d67440c1819207fa68bd66b (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_) : thread_id(uv_thread_self()), path(path_) {
}

HTTPRequestBaton::~HTTPRequestBaton() {
}

}