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

Side by Side Diff: net/base/cert_test_util.h

Issue 4646001: Implement LoadTemporaryRoot for Windows (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/net/base
Patch Set: bulach and wtc feedback Created 10 years, 1 month 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | net/base/cert_test_util.cc » ('j') | net/base/openssl_util.h » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef NET_BASE_CERT_TEST_UTIL_H_
6 #define NET_BASE_CERT_TEST_UTIL_H_
7 #pragma once
8
9 #include "build/build_config.h"
10
11 class FilePath;
12
13 namespace net {
14
15 class X509Certificate;
16
17 #if defined(USE_NSS) || defined(OS_MACOSX) || defined(USE_OPENSSL)
18 // Loads and trusts a root CA certificate (stored in a file) temporarily.
19 // TODO(wtc): Implement this function on Windows (http://crbug.com/8470).
20 X509Certificate* LoadTemporaryRootCert(const FilePath& filename);
21 #endif
22
23 } // namespace net
24
25 #endif // NET_BASE_CERT_TEST_UTIL_H_
OLDNEW
« no previous file with comments | « no previous file | net/base/cert_test_util.cc » ('j') | net/base/openssl_util.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698