Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(410)

Unified Diff: net/dns/dns_transaction.cc

Issue 7825026: Revert "Currently, base/timer.cc calls PostTask with FROM_HERE as the Location, (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/disk_cache/disk_cache_test_util.cc ('k') | net/http/http_response_body_drainer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/dns/dns_transaction.cc
diff --git a/net/dns/dns_transaction.cc b/net/dns/dns_transaction.cc
index 30fd7bfe620416a5589e713ce70cc02eb969036b..6e287c8eda99e5520db5b1966c35a4bf3e45b134 100644
--- a/net/dns/dns_transaction.cc
+++ b/net/dns/dns_transaction.cc
@@ -306,7 +306,7 @@ int DnsTransaction::DoReadResponseComplete(int rv) {
}
void DnsTransaction::StartTimer(base::TimeDelta delay) {
- timer_.Start(FROM_HERE, delay, this, &DnsTransaction::OnTimeout);
+ timer_.Start(delay, this, &DnsTransaction::OnTimeout);
}
void DnsTransaction::RevokeTimer() {
« no previous file with comments | « net/disk_cache/disk_cache_test_util.cc ('k') | net/http/http_response_body_drainer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698