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

Unified Diff: chrome/browser/safe_browsing/certificate_reporting_service_browsertest.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/certificate_reporting_service_browsertest.cc
diff --git a/chrome/browser/safe_browsing/certificate_reporting_service_browsertest.cc b/chrome/browser/safe_browsing/certificate_reporting_service_browsertest.cc
index 8b00883e0044e5a3de90b2906e6045befbef92e3..dbe29ea07993c81bc20776e957c447b5c4255ade 100644
--- a/chrome/browser/safe_browsing/certificate_reporting_service_browsertest.cc
+++ b/chrome/browser/safe_browsing/certificate_reporting_service_browsertest.cc
@@ -90,7 +90,7 @@ class CertificateReportingServiceBrowserTest : public InProcessBrowserTest {
void TearDownOnMainThread() override {
test_helper()->ExpectNoRequests(service());
content::BrowserThread::PostTask(content::BrowserThread::IO, FROM_HERE,
- base::Bind(&CleanUpOnIOThread));
+ base::BindOnce(&CleanUpOnIOThread));
EXPECT_GE(num_expected_failed_report_, 0)
<< "Don't forget to set expected failed report count.";
// Check the histogram as the last thing. This makes sure no in-flight

Powered by Google App Engine
This is Rietveld 408576698