summaryrefslogtreecommitdiffstats
path: root/net/base/cert_database.h
diff options
context:
space:
mode:
Diffstat (limited to 'net/base/cert_database.h')
-rw-r--r--net/base/cert_database.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/net/base/cert_database.h b/net/base/cert_database.h
index 3eb2836..31e3401 100644
--- a/net/base/cert_database.h
+++ b/net/base/cert_database.h
@@ -1,14 +1,16 @@
-// Copyright (c) 2009 The Chromium Authors. All rights reserved.
+// Copyright (c) 2010 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef NET_BASE_CERT_DATABASE_H_
#define NET_BASE_CERT_DATABASE_H_
-#include "net/base/x509_certificate.h"
+#include "base/basictypes.h"
namespace net {
+class X509Certificate;
+
// This class provides functions to manipulate the local
// certificate store.
@@ -30,7 +32,6 @@ class CertDatabase {
int AddUserCert(X509Certificate* cert);
private:
- void Init();
DISALLOW_COPY_AND_ASSIGN(CertDatabase);
};