| 42 | GcsDnsCache(Env* env, int64 refresh_rate_secs); |
| 43 | |
| 44 | ~GcsDnsCache() { |
| 45 | mutex_lock l(mu_); |
| 46 | cancelled_ = true; |
| 47 | cond_var_.notify_one(); |
| 48 | } |
| 49 | |
| 50 | // Annotate the given HttpRequest with resolve overrides from the cache. |
| 51 | void AnnotateRequest(HttpRequest* request); |
nothing calls this directly
no test coverage detected