summaryrefslogtreecommitdiffstats
path: root/chrome/browser/cert_store.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/cert_store.cc')
-rw-r--r--chrome/browser/cert_store.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/cert_store.cc b/chrome/browser/cert_store.cc
index 55fdc5a..7837380 100644
--- a/chrome/browser/cert_store.cc
+++ b/chrome/browser/cert_store.cc
@@ -42,7 +42,7 @@ CertStore::CertStore() : next_cert_id_(1) {
NotificationType::RENDERER_PROCESS_TERMINATED,
NotificationService::AllSources());
NotificationService::current()->AddObserver(this,
- NotificationType::RENDERER_PROCESS_CRASHED,
+ NotificationType::RENDERER_PROCESS_CLOSED,
NotificationService::AllSources());
}
@@ -139,7 +139,7 @@ void CertStore::Observe(NotificationType type,
const NotificationSource& source,
const NotificationDetails& details) {
DCHECK(type == NotificationType::RENDERER_PROCESS_TERMINATED ||
- type == NotificationType::RENDERER_PROCESS_CRASHED);
+ type == NotificationType::RENDERER_PROCESS_CLOSED);
RenderProcessHost* rph = Source<RenderProcessHost>(source).ptr();
DCHECK(rph);
RemoveCertsForRenderProcesHost(rph->pid());