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

Unified Diff: chrome/browser/ssl/ssl_error_info.cc

Issue 9691003: Add Content API around CertStore. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: fix clang Created 8 years, 9 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 | « chrome/browser/ssl/ssl_blocking_page.cc ('k') | chrome/browser/ui/cocoa/page_info_bubble_controller.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ssl/ssl_error_info.cc
===================================================================
--- chrome/browser/ssl/ssl_error_info.cc (revision 126145)
+++ chrome/browser/ssl/ssl_error_info.cc (working copy)
@@ -7,7 +7,7 @@
#include "base/i18n/time_formatting.h"
#include "base/utf_string_conversions.h"
#include "chrome/common/time_format.h"
-#include "content/browser/cert_store.h"
+#include "content/public/browser/cert_store.h"
#include "googleurl/src/gurl.h"
#include "grit/chromium_strings.h"
#include "grit/generated_resources.h"
@@ -283,7 +283,8 @@
if (cert_status & kErrorFlags[i]) {
count++;
if (!cert.get()) {
- bool r = CertStore::GetInstance()->RetrieveCert(cert_id, &cert);
+ bool r = content::CertStore::GetInstance()->RetrieveCert(
+ cert_id, &cert);
DCHECK(r);
}
if (errors)
« no previous file with comments | « chrome/browser/ssl/ssl_blocking_page.cc ('k') | chrome/browser/ui/cocoa/page_info_bubble_controller.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698