| 91 | |
| 92 | public: |
| 93 | MemoryHttpRequest(string const & url, Callback && onFinish, Callback && onProgress) |
| 94 | : HttpRequest(std::move(onFinish), std::move(onProgress)) |
| 95 | , m_requestUrl(url) |
| 96 | , m_writer(m_downloadedData) |
| 97 | { |
| 98 | m_thread = CreateNativeHttpThread(url, *this); |
| 99 | ASSERT(m_thread, ()); |
| 100 | } |
| 101 | |
| 102 | MemoryHttpRequest(string const & url, string const & postData, Callback && onFinish, Callback && onProgress) |
| 103 | : HttpRequest(std::move(onFinish), std::move(onProgress)) |
nothing calls this directly
no test coverage detected