From 9aed77b6dace047bff676a7cdcfef345a858d1a7 Mon Sep 17 00:00:00 2001 From: "wtc@chromium.org" Date: Thu, 1 Apr 2010 18:49:47 +0000 Subject: Adds support for the element to Windows, matching support present on Linux and Mac OS X. Contributed by Ryan Sleevi . Original review URL: http://codereview.chromium.org/843005 R=wtc BUG=148 TEST=KeygenHandler.SmokeTest Review URL: http://codereview.chromium.org/1591006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@43365 0039d316-1c4b-4281-b951-d872f2087c98 --- net/base/cert_database.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'net/base/cert_database.h') 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); }; -- cgit v1.1