Index: content/browser/cert_store.cc |
=================================================================== |
--- content/browser/cert_store.cc (revision 106380) |
+++ content/browser/cert_store.cc (working copy) |
@@ -10,7 +10,7 @@ |
#include "base/stl_util.h" |
#include "content/browser/renderer_host/render_process_host.h" |
#include "content/browser/renderer_host/render_view_host.h" |
-#include "content/common/notification_service.h" |
+#include "content/public/browser/notification_service.h" |
#include "content/public/browser/notification_types.h" |
template <typename T> |
@@ -37,9 +37,9 @@ |
// is not used anymore. |
registrar_.Add(this, content::NOTIFICATION_RENDERER_PROCESS_TERMINATED, |
- NotificationService::AllBrowserContextsAndSources()); |
+ content::NotificationService::AllBrowserContextsAndSources()); |
registrar_.Add(this, content::NOTIFICATION_RENDERER_PROCESS_CLOSED, |
- NotificationService::AllBrowserContextsAndSources()); |
+ content::NotificationService::AllBrowserContextsAndSources()); |
} |
CertStore::~CertStore() { |