Index: components/security_interstitials/core/ssl_error_ui.cc |
diff --git a/components/security_interstitials/core/ssl_error_ui.cc b/components/security_interstitials/core/ssl_error_ui.cc |
index 1cde12396de6f6c67c47c1b6c02f3e9d8175619b..c982474692fa9e86c5fecab1e3de5cbb3ef68a09 100644 |
--- a/components/security_interstitials/core/ssl_error_ui.cc |
+++ b/components/security_interstitials/core/ssl_error_ui.cc |
@@ -86,6 +86,22 @@ void SSLErrorUI::PopulateStringsForHTML(base::DictionaryValue* load_time_data) { |
PopulateNonOverridableStrings(load_time_data); |
} |
+const net::SSLInfo& SSLErrorUI::ssl_info() const { |
+ return ssl_info_; |
+} |
+ |
+const base::Time& SSLErrorUI::time_triggered() const { |
+ return time_triggered_; |
+} |
+ |
+ControllerClient* SSLErrorUI::controller() const { |
+ return controller_; |
+} |
+ |
+int SSLErrorUI::cert_error() const { |
+ return cert_error_; |
+} |
+ |
void SSLErrorUI::PopulateOverridableStrings( |
base::DictionaryValue* load_time_data) { |
DCHECK(soft_override_enabled_); |