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

Unified Diff: net/url_request/url_request_unittest.cc

Issue 578553004: Remove the "snionly" concept from the HSTS preload. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: ... Created 6 years, 3 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 | « net/url_request/url_request_http_job.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/url_request/url_request_unittest.cc
diff --git a/net/url_request/url_request_unittest.cc b/net/url_request/url_request_unittest.cc
index 06e05b9e3025d31b7eb274a2c4da87bd85d77727..11c8f571017c40318065fb5732dcc548aef8f52c 100644
--- a/net/url_request/url_request_unittest.cc
+++ b/net/url_request/url_request_unittest.cc
@@ -6632,7 +6632,7 @@ TEST_F(HTTPSRequestTest, HTTPSErrorsNoClobberTSSTest) {
TransportSecurityState::DomainState static_domain_state;
EXPECT_TRUE(transport_security_state.GetStaticDomainState(
- "www.google.com", true, &static_domain_state));
+ "www.google.com", &static_domain_state));
context.set_transport_security_state(&transport_security_state);
context.Init();
@@ -6659,7 +6659,7 @@ TEST_F(HTTPSRequestTest, HTTPSErrorsNoClobberTSSTest) {
// Get a fresh copy of the states, and check that they haven't changed.
TransportSecurityState::DomainState new_static_domain_state;
EXPECT_TRUE(transport_security_state.GetStaticDomainState(
- "www.google.com", true, &new_static_domain_state));
+ "www.google.com", &new_static_domain_state));
TransportSecurityState::DomainState new_dynamic_domain_state;
EXPECT_FALSE(transport_security_state.GetDynamicDomainState(
"www.google.com", &new_dynamic_domain_state));
« no previous file with comments | « net/url_request/url_request_http_job.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698