diff options
author | dank@chromium.org <dank@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-11-26 22:47:26 +0000 |
---|---|---|
committer | dank@chromium.org <dank@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-11-26 22:47:26 +0000 |
commit | e03b3477198cc99ab43e501b782710749ba2478e (patch) | |
tree | a065af6f26a6ea653bea8fbc6126c73ec98479e6 /net/base/ssl_test_util.h | |
parent | cbc636789f8cbfa17cd28abe0dee0e5fba75a112 (diff) | |
download | chromium_src-e03b3477198cc99ab43e501b782710749ba2478e.zip chromium_src-e03b3477198cc99ab43e501b782710749ba2478e.tar.gz chromium_src-e03b3477198cc99ab43e501b782710749ba2478e.tar.bz2 |
Roll back r6063. TBR.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@6067 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/base/ssl_test_util.h')
-rw-r--r-- | net/base/ssl_test_util.h | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/net/base/ssl_test_util.h b/net/base/ssl_test_util.h index 3502b9b..e69de29 100644 --- a/net/base/ssl_test_util.h +++ b/net/base/ssl_test_util.h @@ -1,47 +0,0 @@ -// Copyright (c) 2006-2008 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_SSL_TEST_UTIL_H_ -#define NET_BASE_SSL_TEST_UTIL_H_ - -#include "build/build_config.h" - -#include <string> - -#include "base/path_service.h" - -class SSLTestUtil { - public: - SSLTestUtil(); - - ~SSLTestUtil(); - - std::wstring GetRootCertPath(); - - std::wstring GetOKCertPath(); - - // Where test data is kept in source tree - static const wchar_t kDocRoot[]; - - // Hostname to use for test server - static const char kHostName[]; - - // Port to use for test server - static const int kOKHTTPSPort; - - // Issuer name of the cert that should be trusted for the test to work. - static const wchar_t kCertIssuerName[]; - - private: - void CheckCATrusted(); - - std::wstring cert_dir_; - -#if defined(OS_LINUX) - struct PrivateCERTCertificate; - PrivateCERTCertificate *cert_; -#endif -}; - -#endif |