summaryrefslogtreecommitdiffstats
path: root/net/base/ssl_test_util.h
diff options
context:
space:
mode:
authordank@chromium.org <dank@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2008-11-26 22:47:26 +0000
committerdank@chromium.org <dank@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2008-11-26 22:47:26 +0000
commite03b3477198cc99ab43e501b782710749ba2478e (patch)
treea065af6f26a6ea653bea8fbc6126c73ec98479e6 /net/base/ssl_test_util.h
parentcbc636789f8cbfa17cd28abe0dee0e5fba75a112 (diff)
downloadchromium_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.h47
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