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

Unified Diff: net/base/test_data_directory.cc

Issue 17385010: OpenSSL/NSS implementation of ProofVerfifier. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Moved error_details and generation_counter into QuicCryptoClientStream. Created 7 years, 6 months 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 side-by-side diff with in-line comments
Download patch
Index: net/base/test_data_directory.cc
diff --git a/net/base/test_data_directory.cc b/net/base/test_data_directory.cc
index 45fe638d4286b208510eabf950873e60e3ae8289..aaf9050dfc0f4b44ee9a2e9cfc632e80bd86e4fc 100644
--- a/net/base/test_data_directory.cc
+++ b/net/base/test_data_directory.cc
@@ -12,6 +12,9 @@ namespace net {
namespace {
const base::FilePath::CharType kCertificateRelativePath[] =
FILE_PATH_LITERAL("net/data/ssl/certificates");
+
+const base::FilePath::CharType kQuicCertificateRelativePath[] =
+ FILE_PATH_LITERAL("net/quic/crypto/testdata");
} // namespace
base::FilePath GetTestCertsDirectory() {
@@ -33,4 +36,10 @@ base::FilePath GetWebSocketTestDataDirectory() {
return data_dir;
}
+base::FilePath GetQuicTestCertsDirectory() {
+ base::FilePath src_root;
+ PathService::Get(base::DIR_SOURCE_ROOT, &src_root);
+ return src_root.Append(kQuicCertificateRelativePath);
+}
+
} // namespace net
« no previous file with comments | « net/base/test_data_directory.h ('k') | net/net.gyp » ('j') | net/quic/crypto/crypto_handshake.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698