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

Unified Diff: webkit/glue/resource_fetcher_unittest.cc

Issue 7812036: Update base/timer.h code to pass through Location from call sites. (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
Index: webkit/glue/resource_fetcher_unittest.cc
diff --git a/webkit/glue/resource_fetcher_unittest.cc b/webkit/glue/resource_fetcher_unittest.cc
index 9ef0fc61df6da0173c0f174bce5ad68349348fc9..4aac90a24bc86e13f0655e3025be974824ee3e08 100644
--- a/webkit/glue/resource_fetcher_unittest.cc
+++ b/webkit/glue/resource_fetcher_unittest.cc
@@ -72,7 +72,8 @@ class FetcherDelegate {
void StartTimer() {
timer_.Start(base::TimeDelta::FromMilliseconds(kMaxWaitTimeMs),
this,
- &FetcherDelegate::TimerFired);
+ &FetcherDelegate::TimerFired,
+ FROM_HERE);
}
void TimerFired() {

Powered by Google App Engine
This is Rietveld 408576698