Chromium Code Reviews

Unified Diff: chrome/browser/certificate_viewer.cc

Issue 5685007: Rename all methods accessing Singleton<T> as GetInstance(). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
« no previous file with comments | « chrome/browser/cert_store.cc ('k') | chrome/browser/chrome_plugin_browsing_context.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/certificate_viewer.cc
diff --git a/chrome/browser/certificate_viewer.cc b/chrome/browser/certificate_viewer.cc
index 677c81ff67afcc16af3283440ecc624acb0d0061..73cc4d5c70c46f11b012a5fff3b42a8eb497319e 100644
--- a/chrome/browser/certificate_viewer.cc
+++ b/chrome/browser/certificate_viewer.cc
@@ -8,7 +8,7 @@
void ShowCertificateViewerByID(gfx::NativeWindow parent, int cert_id) {
scoped_refptr<net::X509Certificate> cert;
- CertStore::GetSharedInstance()->RetrieveCert(cert_id, &cert);
+ CertStore::GetInstance()->RetrieveCert(cert_id, &cert);
if (!cert.get()) {
// The certificate was not found. Could be that the renderer crashed before
// we displayed the page info.
« no previous file with comments | « chrome/browser/cert_store.cc ('k') | chrome/browser/chrome_plugin_browsing_context.h » ('j') | no next file with comments »

Powered by Google App Engine