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

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

Issue 1223233002: Common Name Mismatch Handler For WWW Subdomain Mismatch case (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Resolving Comments Created 5 years, 5 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/ssl/ssl_browser_tests.cc
diff --git a/chrome/browser/ssl/ssl_browser_tests.cc b/chrome/browser/ssl/ssl_browser_tests.cc
index 31a3f6a13dbca0299249c2e0d90f7547f2626427..cc49e245ff6b4578f102d45c5c9f27f79e94a738 100644
--- a/chrome/browser/ssl/ssl_browser_tests.cc
+++ b/chrome/browser/ssl/ssl_browser_tests.cc
@@ -2233,9 +2233,10 @@ class SSLBlockingPageIDNTest : public SecurityInterstitialIDNTest {
net::SSLInfo ssl_info;
ssl_info.cert = new net::X509Certificate(
request_url.host(), "CA", base::Time::Max(), base::Time::Max());
- return new SSLBlockingPage(
- contents, net::ERR_CERT_CONTAINS_ERRORS, ssl_info, request_url, 0,
- base::Time::NowFromSystemTime(), nullptr, base::Callback<void(bool)>());
+ return new SSLBlockingPage(contents, net::ERR_CERT_CONTAINS_ERRORS,
+ ssl_info, request_url, 0,
+ base::Time::NowFromSystemTime(), nullptr,
+ base::Callback<void(bool)>(), GURL());
}
};

Powered by Google App Engine
This is Rietveld 408576698