| 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..16521fc2d5e8603dd070a3556ff7f0bb7c307437 100644
|
| --- a/components/security_interstitials/core/ssl_error_ui.cc
|
| +++ b/components/security_interstitials/core/ssl_error_ui.cc
|
| @@ -86,6 +86,18 @@ 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_;
|
| +}
|
| +
|
| void SSLErrorUI::PopulateOverridableStrings(
|
| base::DictionaryValue* load_time_data) {
|
| DCHECK(soft_override_enabled_);
|
|
|