commit | 20514c96615118edf6e8cafd5f421bea03613a56 | [log] [tgz] |
---|---|---|
author | danakj <[email protected]> | Fri Dec 13 17:30:19 2019 |
committer | Commit Bot <[email protected]> | Fri Dec 13 17:30:19 2019 |
tree | ce40a33dc7ab79dcdfa3b5ac3b7cf5b213b039f1 | |
parent | 889fff11d48ed6a1345284e8deab7c272beff30d [diff] [blame] |
Remove unused |decision_callback| which is a deprecated Callback type This makes //weblayer clean of deprecated Callbacks and Bind calls, so we remove it from the PRESUBMIT allow list. [email protected] Bug: 1007693 Change-Id: I40daa4fa4e7db9a7568817b1a28867612cf887f8 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1965934 Commit-Queue: danakj <[email protected]> Commit-Queue: Scott Violet <[email protected]> Reviewed-by: Scott Violet <[email protected]> Auto-Submit: danakj <[email protected]> Cr-Commit-Position: refs/heads/master@{#724681}
diff --git a/chrome/browser/chrome_content_browser_client.cc b/chrome/browser/chrome_content_browser_client.cc index fb07ca95..816ea26 100644 --- a/chrome/browser/chrome_content_browser_client.cc +++ b/chrome/browser/chrome_content_browser_client.cc
@@ -3931,8 +3931,8 @@ throttles.push_back(std::make_unique<SSLErrorNavigationThrottle>( handle, std::make_unique<CertificateReportingServiceCertReporter>(web_contents), - base::Bind(&SSLErrorHandler::HandleSSLError), - base::Bind(&IsInHostedApp))); + base::BindOnce(&SSLErrorHandler::HandleSSLError), + base::BindOnce(&IsInHostedApp))); throttles.push_back(std::make_unique<LoginNavigationThrottle>(handle));