| 21 | } |
| 22 | |
| 23 | FSecure::Dropbox::Dropbox(std::string const& userAgent, std::string const& token, std::string const& channelName, std::string const& proxyOverride) |
| 24 | { |
| 25 | this->m_ProxyConfig = WebProxy::GetProxyConfigurationOverride(proxyOverride); |
| 26 | |
| 27 | this->m_Token = token; |
| 28 | this->m_UserAgent = userAgent; |
| 29 | SetChannel(CreateChannel(Convert<Lowercase>(channelName))); |
| 30 | } |
| 31 | |
| 32 | void FSecure::Dropbox::SetChannel(std::string const& channelName) |
| 33 | { |
nothing calls this directly
no outgoing calls
no test coverage detected