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

Unified Diff: net/url_request/url_request_test_util.cc

Issue 9617039: Change Origin bound certs -> Domain bound certs. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 8 years, 9 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/url_request/url_request_test_util.cc
diff --git a/net/url_request/url_request_test_util.cc b/net/url_request/url_request_test_util.cc
index dc5fa05d9cbec2beaa573f3d5df7bd5b1d7f672a..274a411556aa6c72bd7410e270b525f7ddb0f410 100644
--- a/net/url_request/url_request_test_util.cc
+++ b/net/url_request/url_request_test_util.cc
@@ -143,10 +143,10 @@ void TestURLRequestContext::Init() {
if (!cookie_store())
context_storage_.set_cookie_store(new net::CookieMonster(NULL, NULL));
// In-memory origin bound cert service.
- if (!origin_bound_cert_service()) {
- context_storage_.set_origin_bound_cert_service(
- new net::OriginBoundCertService(
- new net::DefaultOriginBoundCertStore(NULL)));
+ if (!server_bound_cert_service()) {
+ context_storage_.set_server_bound_cert_service(
+ new net::ServerBoundCertService(
+ new net::DefaultServerBoundCertStore(NULL)));
}
if (accept_language().empty())
set_accept_language("en-us,fr");
« no previous file with comments | « net/url_request/url_request_context_storage.cc ('k') | tools/valgrind/gtest_exclude/net_unittests.gtest-tsan.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698