| 207 | } |
| 208 | |
| 209 | void CurlHttpRequest::SetRequestStats(RequestStats* stats) { |
| 210 | CheckNotSent(); |
| 211 | CHECK(stats_ == nullptr) << "SetRequestStats already called"; |
| 212 | stats_ = stats; |
| 213 | } |
| 214 | |
| 215 | void CurlHttpRequest::SetDeleteRequest() { |
| 216 | CheckNotSent(); |
no outgoing calls