Home | History | Annotate | Download | only in http

Lines Matching refs:Transport

22 using http::fake::Transport;
27 Transport::Transport() {
28 VLOG(1) << "fake::Transport created";
31 Transport::~Transport() {
32 VLOG(1) << "fake::Transport destroyed";
35 std::shared_ptr<http::Connection> Transport::CreateConnection(
66 void Transport::RunCallbackAsync(
76 bool Transport::HandleOneAsyncRequest() {
86 void Transport::HandleAllAsyncRequests() {
91 http::RequestID Transport::StartAsyncTransfer(
95 // Fake transport doesn't use this method.
96 LOG(FATAL) << "This method should not be called on fake transport";
100 bool Transport::CancelRequest(RequestID /* request_id */) {
104 void Transport::SetDefaultTimeout(base::TimeDelta /* timeout */) {
112 void Transport::AddHandler(const std::string& url,
119 void Transport::AddSimpleReplyHandler(const std::string& url,
135 Transport::HandlerCallback Transport::GetHandler(