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

Unified Diff: chrome/browser/safe_browsing/safe_browsing_blocking_page.cc

Issue 2283373002: Remove unneeded scoped_refptr<>::get() on method binding (Closed)
Patch Set: Created 4 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/safe_browsing/safe_browsing_blocking_page.cc
diff --git a/chrome/browser/safe_browsing/safe_browsing_blocking_page.cc b/chrome/browser/safe_browsing/safe_browsing_blocking_page.cc
index 00d9522735302849cf6b1c05458ad6e18d8cf365..f86b2204e37c69e1cd7f3145a9f648bc0e7b4706 100644
--- a/chrome/browser/safe_browsing/safe_browsing_blocking_page.cc
+++ b/chrome/browser/safe_browsing/safe_browsing_blocking_page.cc
@@ -452,7 +452,7 @@ void SafeBrowsingBlockingPage::FinishThreatDetails(int64_t delay_ms,
// Finish the malware details collection, send it over.
BrowserThread::PostDelayedTask(
BrowserThread::IO, FROM_HERE,
- base::Bind(&ThreatDetails::FinishCollection, threat_details_.get(),
+ base::Bind(&ThreatDetails::FinishCollection, threat_details_,
did_proceed, num_visits),
base::TimeDelta::FromMilliseconds(delay_ms));
}
« no previous file with comments | « chrome/browser/process_singleton_posix.cc ('k') | chrome/browser/supervised_user/supervised_user_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698