Index: content/child/site_isolation_policy.cc |
diff --git a/content/child/site_isolation_policy.cc b/content/child/site_isolation_policy.cc |
index a761a06f2bfa2629331e385862798a9b1db02724..e98d744194d1434ea575153179a391cfe37613b2 100644 |
--- a/content/child/site_isolation_policy.cc |
+++ b/content/child/site_isolation_policy.cc |
@@ -158,21 +158,6 @@ void HistogramCountNotBlockedResponse(const std::string& bucket_prefix, |
IncrementHistogramCount(bucket_prefix + ".NotBlocked.MaybeJS"); |
} |
-void HistogramCountPolicyDecision( |
- const std::string& bucket_prefix, |
- bool sniffed_as_document, |
- bool sniffed_as_js, |
- const SiteIsolationPolicy::ResponseMetaData& resp_data) { |
- if (sniffed_as_document) { |
- HistogramCountBlockedResponse(bucket_prefix, resp_data, false); |
- } else { |
- if (resp_data.no_sniff) |
- HistogramCountBlockedResponse(bucket_prefix, resp_data, true); |
- else |
- HistogramCountNotBlockedResponse(bucket_prefix, sniffed_as_js); |
- } |
-} |
- |
} // namespace |
SiteIsolationPolicy::ResponseMetaData::ResponseMetaData() {} |