summaryrefslogtreecommitdiffstats
path: root/content/browser/cert_store.cc
diff options
context:
space:
mode:
Diffstat (limited to 'content/browser/cert_store.cc')
-rw-r--r--content/browser/cert_store.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/content/browser/cert_store.cc b/content/browser/cert_store.cc
index 55ab630..22c8c47 100644
--- a/content/browser/cert_store.cc
+++ b/content/browser/cert_store.cc
@@ -137,11 +137,11 @@ void CertStore::RemoveCertsForRenderProcesHost(int process_id) {
}
void CertStore::Observe(int type,
- const NotificationSource& source,
- const NotificationDetails& details) {
+ const content::NotificationSource& source,
+ const content::NotificationDetails& details) {
DCHECK(type == content::NOTIFICATION_RENDERER_PROCESS_TERMINATED ||
type == content::NOTIFICATION_RENDERER_PROCESS_CLOSED);
- RenderProcessHost* rph = Source<RenderProcessHost>(source).ptr();
+ RenderProcessHost* rph = content::Source<RenderProcessHost>(source).ptr();
DCHECK(rph);
RemoveCertsForRenderProcesHost(rph->id());
}