Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4787)

Unified Diff: chrome/browser/ui/views/page_info_bubble_view.cc

Issue 6576020: Remove Gears from Chrome (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: ready to review Created 9 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 dce2d6b369a37d36336b389d473d6852cbbb26db..d8d8c3ee9e21d5f0a19afe65468550e08a92ab81 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;
}

Powered by Google App Engine
This is Rietveld 408576698