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

Unified Diff: net/quic/crypto/channel_id_chromium.h

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/crypto/channel_id_chromium.h
diff --git a/net/quic/crypto/channel_id_chromium.h b/net/quic/crypto/channel_id_chromium.h
index 43b67c4c1db1768a2f191740064ef25ff50f9903..08cfff94479838a9f49e7c506e0dad6980effd27 100644
--- a/net/quic/crypto/channel_id_chromium.h
+++ b/net/quic/crypto/channel_id_chromium.h
@@ -15,7 +15,7 @@ class ECPrivateKey;
namespace net {
-class ServerBoundCertService;
+class ChannelIDService;
class NET_EXPORT_PRIVATE ChannelIDKeyChromium: public ChannelIDKey {
public:
@@ -35,7 +35,7 @@ class NET_EXPORT_PRIVATE ChannelIDKeyChromium: public ChannelIDKey {
class ChannelIDSourceChromium : public ChannelIDSource {
public:
explicit ChannelIDSourceChromium(
- ServerBoundCertService* server_bound_cert_service);
+ ChannelIDService* channel_id_service);
virtual ~ChannelIDSourceChromium();
// ChannelIDSource interface
@@ -54,7 +54,7 @@ class ChannelIDSourceChromium : public ChannelIDSource {
JobSet active_jobs_;
// The service for retrieving Channel ID keys.
- ServerBoundCertService* const server_bound_cert_service_;
+ ChannelIDService* const channel_id_service_;
DISALLOW_COPY_AND_ASSIGN(ChannelIDSourceChromium);
};

Powered by Google App Engine
This is Rietveld 408576698