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

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
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 621b78ad6e56e6b78936b766a7140c818d70738b..c1ef92f604592e2d46ce94643f3fb7efbd26f27a 100644
--- a/chrome/browser/ui/webui/net_internals/net_internals_ui.cc
+++ b/chrome/browser/ui/webui/net_internals/net_internals_ui.cc
@@ -1088,7 +1088,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());

Powered by Google App Engine
This is Rietveld 408576698