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

Unified Diff: chrome/browser/ui/webui/net_internals/net_internals_ui.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 | « chrome/browser/net/predictor.cc ('k') | net/http/http_security_headers_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/webui/net_internals/net_internals_ui.cc
diff --git a/chrome/browser/ui/webui/net_internals/net_internals_ui.cc b/chrome/browser/ui/webui/net_internals/net_internals_ui.cc
index caa8cbf4388eea16421e5ea4cc1f0fa44d98a8f2..a51d0f0262ccf8cf484444f532d6a38503091cc8 100644
--- a/chrome/browser/ui/webui/net_internals/net_internals_ui.cc
+++ b/chrome/browser/ui/webui/net_internals/net_internals_ui.cc
@@ -1095,7 +1095,7 @@ void NetInternalsMessageHandler::IOThreadImpl::OnHSTSQuery(
} else {
net::TransportSecurityState::DomainState static_state;
const bool found_static = transport_security_state->GetStaticDomainState(
- domain, true, &static_state);
+ domain, &static_state);
if (found_static) {
result->SetBoolean("has_static_sts",
found_static && static_state.ShouldUpgradeToSSL());
« no previous file with comments | « chrome/browser/net/predictor.cc ('k') | net/http/http_security_headers_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698