| Index: chrome/browser/ui/views/page_info_bubble_view.cc
|
| diff --git a/chrome/browser/ui/views/page_info_bubble_view.cc b/chrome/browser/ui/views/page_info_bubble_view.cc
|
| index b112a000bb6e9e8b2ce6426926f24082c381afca..f6e284202b57d2a379e156510de9462b4e741519 100644
|
| --- a/chrome/browser/ui/views/page_info_bubble_view.cc
|
| +++ b/chrome/browser/ui/views/page_info_bubble_view.cc
|
| @@ -98,9 +98,9 @@ PageInfoBubbleView::PageInfoBubbleView(gfx::NativeWindow parent_window,
|
| if (cert_id_ > 0) {
|
| scoped_refptr<net::X509Certificate> cert;
|
| CertStore::GetInstance()->RetrieveCert(cert_id_, &cert);
|
| - // When running with fake certificate (Chrome Frame) or Gears in offline
|
| - // mode, we have no os certificate, so there is no cert to show. Don't
|
| - // bother showing the cert info link in that case.
|
| + // When running with fake certificate (Chrome Frame), we have no os
|
| + // certificate, so there is no cert to show. Don't bother showing the cert
|
| + // info link in that case.
|
| if (!cert.get() || !cert->os_cert_handle())
|
| cert_id_ = 0;
|
| }
|
|
|