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

Unified Diff: chrome/browser/ssl/ssl_error_handler_unittest.cc

Issue 2220603003: Remove unnecessary |result| argument from AllowCertificateError() (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove unnecessary include 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
« no previous file with comments | « chrome/browser/ssl/ssl_error_handler.cc ('k') | chrome/browser/ui/webui/interstitials/interstitial_ui.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ssl/ssl_error_handler_unittest.cc
diff --git a/chrome/browser/ssl/ssl_error_handler_unittest.cc b/chrome/browser/ssl/ssl_error_handler_unittest.cc
index 0bea20560fac11fdb956cf6b45bfed3585140d8a..e31b526f3fdcf45e5df217f871c11f64800c5163 100644
--- a/chrome/browser/ssl/ssl_error_handler_unittest.cc
+++ b/chrome/browser/ssl/ssl_error_handler_unittest.cc
@@ -29,13 +29,14 @@ class SSLErrorHandlerForTest : public SSLErrorHandler {
SSLErrorHandlerForTest(Profile* profile,
content::WebContents* web_contents,
const net::SSLInfo& ssl_info)
- : SSLErrorHandler(web_contents,
- net::ERR_CERT_COMMON_NAME_INVALID,
- ssl_info,
- GURL(),
- 0,
- nullptr,
- base::Callback<void(bool)>()),
+ : SSLErrorHandler(
+ web_contents,
+ net::ERR_CERT_COMMON_NAME_INVALID,
+ ssl_info,
+ GURL(),
+ 0,
+ nullptr,
+ base::Callback<void(content::CertificateRequestResultType)>()),
profile_(profile),
captive_portal_checked_(false),
suggested_url_exists_(false),
« no previous file with comments | « chrome/browser/ssl/ssl_error_handler.cc ('k') | chrome/browser/ui/webui/interstitials/interstitial_ui.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698