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

Unified Diff: net/quic/quic_stream_factory_test.cc

Issue 356713005: Rename ServerBoundCert => ChannelID to reflect the current name (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix cookies_list.js Created 6 years, 5 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/quic/quic_stream_factory_test.cc
diff --git a/net/quic/quic_stream_factory_test.cc b/net/quic/quic_stream_factory_test.cc
index 7c09cbf7d2b04b41add7c1a6cc478f9ec439e0ce..e082e311555f5efd4667fe6db1025e8418ab6eea 100644
--- a/net/quic/quic_stream_factory_test.cc
+++ b/net/quic/quic_stream_factory_test.cc
@@ -24,7 +24,8 @@
#include "net/quic/test_tools/quic_test_packet_maker.h"
#include "net/quic/test_tools/quic_test_utils.h"
#include "net/socket/socket_test_util.h"
-#include "net/ssl/default_server_bound_cert_store.h"
+#include "net/ssl/channel_id_service.h"
+#include "net/ssl/default_channel_id_store.h"
#include "net/test/cert_test_util.h"
#include "testing/gtest/include/gtest/gtest.h"
@@ -90,12 +91,12 @@ class QuicStreamFactoryTest : public ::testing::TestWithParam<QuicVersion> {
maker_(GetParam(), 0),
clock_(new MockClock()),
cert_verifier_(CertVerifier::CreateDefault()),
- server_bound_cert_service_(new ServerBoundCertService(
- new DefaultServerBoundCertStore(NULL),
+ channel_id_service_(new ChannelIDService(
+ new DefaultChannelIDStore(NULL),
base::MessageLoopProxy::current())),
factory_(&host_resolver_, &socket_factory_,
base::WeakPtr<HttpServerProperties>(), cert_verifier_.get(),
- server_bound_cert_service_.get(),
+ channel_id_service_.get(),
&crypto_client_stream_factory_, &random_generator_, clock_,
kDefaultMaxPacketSize, std::string(),
SupportedVersions(GetParam()), true, true, true,
@@ -187,7 +188,7 @@ class QuicStreamFactoryTest : public ::testing::TestWithParam<QuicVersion> {
QuicTestPacketMaker maker_;
MockClock* clock_; // Owned by factory_.
scoped_ptr<CertVerifier> cert_verifier_;
- scoped_ptr<ServerBoundCertService> server_bound_cert_service_;
+ scoped_ptr<ChannelIDService> channel_id_service_;
QuicStreamFactory factory_;
HostPortPair host_port_pair_;
bool is_https_;

Powered by Google App Engine
This is Rietveld 408576698