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

Unified Diff: chrome/browser/safe_browsing/incident_reporting/variations_seed_signature_analyzer.cc

Issue 2821193005: Rewrite base::Bind to base::BindOnce with base_bind_rewriters in //chrome/browser/safe_browsing (Closed)
Patch Set: Created 3 years, 8 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/incident_reporting/variations_seed_signature_analyzer.cc
diff --git a/chrome/browser/safe_browsing/incident_reporting/variations_seed_signature_analyzer.cc b/chrome/browser/safe_browsing/incident_reporting/variations_seed_signature_analyzer.cc
index 99491528b2c47db8ee97ec4ef741f1f656a7ab71..c35c1afdcab76b77a6187805525d764065366854 100644
--- a/chrome/browser/safe_browsing/incident_reporting/variations_seed_signature_analyzer.cc
+++ b/chrome/browser/safe_browsing/incident_reporting/variations_seed_signature_analyzer.cc
@@ -55,10 +55,9 @@ void RegisterVariationsSeedSignatureAnalysis() {
void VerifyVariationsSeedSignature(
std::unique_ptr<IncidentReceiver> incident_receiver) {
content::BrowserThread::PostTask(
- content::BrowserThread::UI,
- FROM_HERE,
- base::Bind(&VerifyVariationsSeedSignatureOnUIThread,
- base::Passed(&incident_receiver)));
+ content::BrowserThread::UI, FROM_HERE,
+ base::BindOnce(&VerifyVariationsSeedSignatureOnUIThread,
+ base::Passed(&incident_receiver)));
}
} // namespace safe_browsing

Powered by Google App Engine
This is Rietveld 408576698