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

Unified Diff: chrome/browser/renderer_host/safe_browsing_resource_handler.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: chrome/browser/renderer_host/safe_browsing_resource_handler.cc
diff --git a/chrome/browser/renderer_host/safe_browsing_resource_handler.cc b/chrome/browser/renderer_host/safe_browsing_resource_handler.cc
index 043b6e08c5debfb68e67e588263cfa6414ef68ea..a3f4c454ced6c86f7fee0f78bb2dcb8c56ec0ebf 100644
--- a/chrome/browser/renderer_host/safe_browsing_resource_handler.cc
+++ b/chrome/browser/renderer_host/safe_browsing_resource_handler.cc
@@ -283,7 +283,8 @@ bool SafeBrowsingResourceHandler::CheckUrl(const GURL& url) {
// Start a timer to abort the check if it takes too long.
timer_.Start(base::TimeDelta::FromMilliseconds(kCheckUrlTimeoutMs),
- this, &SafeBrowsingResourceHandler::OnCheckUrlTimeout);
+ this, &SafeBrowsingResourceHandler::OnCheckUrlTimeout,
+ FROM_HERE);
return false;
}

Powered by Google App Engine
This is Rietveld 408576698