| Index: content/browser/frame_host/interstitial_page_impl.cc
 | 
| diff --git a/content/browser/frame_host/interstitial_page_impl.cc b/content/browser/frame_host/interstitial_page_impl.cc
 | 
| index d74fed54a840c3b893d413c77370c89debbf07dd..fb4d81a5edf4cf01a04db512c8a7fbb24fe9e3a7 100644
 | 
| --- a/content/browser/frame_host/interstitial_page_impl.cc
 | 
| +++ b/content/browser/frame_host/interstitial_page_impl.cc
 | 
| @@ -235,7 +235,8 @@ void InterstitialPageImpl::Show() {
 | 
|  
 | 
|      controller_->SetTransientEntry(std::move(entry));
 | 
|  
 | 
| -    static_cast<WebContentsImpl*>(web_contents_)->DidChangeVisibleSSLState();
 | 
| +    static_cast<WebContentsImpl*>(web_contents_)
 | 
| +        ->DidChangeVisibleSecurityState();
 | 
|    }
 | 
|  
 | 
|    DCHECK(!render_view_host_);
 | 
| @@ -301,7 +302,7 @@ void InterstitialPageImpl::Hide() {
 | 
|    if (entry && !new_navigation_ && should_revert_web_contents_title_)
 | 
|      web_contents_->UpdateTitleForEntry(entry, original_web_contents_title_);
 | 
|  
 | 
| -  static_cast<WebContentsImpl*>(web_contents_)->DidChangeVisibleSSLState();
 | 
| +  static_cast<WebContentsImpl*>(web_contents_)->DidChangeVisibleSecurityState();
 | 
|  
 | 
|    InterstitialPageMap::iterator iter =
 | 
|        g_web_contents_to_interstitial_page->find(web_contents_);
 | 
| 
 |