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

Unified Diff: chrome/browser/ui/cocoa/certificate_viewer_mac.mm

Issue 10857020: Do not perform online revocation checking when the user has explicitly disabled it, except for when… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Review feedback Created 8 years, 4 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
« no previous file with comments | « no previous file | net/base/cert_verify_proc.cc » ('j') | net/base/x509_certificate.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/cocoa/certificate_viewer_mac.mm
diff --git a/chrome/browser/ui/cocoa/certificate_viewer_mac.mm b/chrome/browser/ui/cocoa/certificate_viewer_mac.mm
index 6b430b32ca8aebcfc8de54046c8ec1bbe47c5f99..c69cc837e711b7700eb6f284a21bd00eb3d99630 100644
--- a/chrome/browser/ui/cocoa/certificate_viewer_mac.mm
+++ b/chrome/browser/ui/cocoa/certificate_viewer_mac.mm
@@ -52,7 +52,7 @@ void ShowCertificateViewer(content::WebContents* web_contents,
CFArrayAppendValue(policies, basic_policy);
CFRelease(basic_policy);
- status = net::x509_util::CreateRevocationPolicies(false, policies);
+ status = net::x509_util::CreateRevocationPolicies(false, false, policies);
if (status != noErr) {
NOTREACHED();
return;
« no previous file with comments | « no previous file | net/base/cert_verify_proc.cc » ('j') | net/base/x509_certificate.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698