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

Unified Diff: content/browser/cert_store_impl.h

Issue 11273049: Revert 164120 - content/browser: Move more files into the content namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 2 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 | « content/browser/browser_url_handler_impl_unittest.cc ('k') | content/browser/cert_store_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/cert_store_impl.h
===================================================================
--- content/browser/cert_store_impl.h (revision 164121)
+++ content/browser/cert_store_impl.h (working copy)
@@ -14,10 +14,8 @@
#include "content/public/browser/notification_registrar.h"
#include "net/base/x509_certificate.h"
-namespace content {
-
-class CertStoreImpl : public CertStore,
- public NotificationObserver {
+class CertStoreImpl : public content::CertStore,
+ public content::NotificationObserver {
public:
// Returns the singleton instance of the CertStore.
static CertStoreImpl* GetInstance();
@@ -28,10 +26,10 @@
virtual bool RetrieveCert(int cert_id,
scoped_refptr<net::X509Certificate>* cert) OVERRIDE;
- // NotificationObserver implementation.
+ // content::NotificationObserver implementation.
virtual void Observe(int type,
- const NotificationSource& source,
- const NotificationDetails& details) OVERRIDE;
+ const content::NotificationSource& source,
+ const content::NotificationDetails& details) OVERRIDE;
protected:
CertStoreImpl();
virtual ~CertStoreImpl();
@@ -54,7 +52,7 @@
ReverseCertMap;
// Is only used on the UI Thread.
- NotificationRegistrar registrar_;
+ content::NotificationRegistrar registrar_;
IDMap process_id_to_cert_id_;
IDMap cert_id_to_process_id_;
@@ -71,6 +69,4 @@
DISALLOW_COPY_AND_ASSIGN(CertStoreImpl);
};
-} // namespace content
-
#endif // CONTENT_BROWSER_CERT_STORE_IMPL_H_
« no previous file with comments | « content/browser/browser_url_handler_impl_unittest.cc ('k') | content/browser/cert_store_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698