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

Unified Diff: net/base/test_data_directory.cc

Issue 12220104: Wire up SSL client authentication for OpenSSL/Android through the net/ stack (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: git cl try Created 7 years, 10 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
« no previous file with comments | « net/base/test_data_directory.h ('k') | net/data/ssl/certificates/README » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/base/test_data_directory.cc
diff --git a/net/base/test_data_directory.cc b/net/base/test_data_directory.cc
index df30c4f198abf3fdaeee62b79a8b9696846221db..45fe638d4286b208510eabf950873e60e3ae8289 100644
--- a/net/base/test_data_directory.cc
+++ b/net/base/test_data_directory.cc
@@ -20,8 +20,12 @@ base::FilePath GetTestCertsDirectory() {
return src_root.Append(kCertificateRelativePath);
}
-base::FilePath GetTestCertsDirectoryRelative() {
+base::FilePath GetTestClientCertsDirectory() {
+#if defined(OS_ANDROID)
return base::FilePath(kCertificateRelativePath);
+#else
+ return GetTestCertsDirectory();
+#endif
}
base::FilePath GetWebSocketTestDataDirectory() {
« no previous file with comments | « net/base/test_data_directory.h ('k') | net/data/ssl/certificates/README » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698