Index: net/spdy/spdy_session.h |
diff --git a/net/spdy/spdy_session.h b/net/spdy/spdy_session.h |
index 408245bef95e32b3312f0600ae8c67ccfc311f4e..ff6ccfaf9e9c6cec4e88e75b44b2557369d647ea 100644 |
--- a/net/spdy/spdy_session.h |
+++ b/net/spdy/spdy_session.h |
@@ -156,13 +156,13 @@ class NET_EXPORT SpdySession : public base::RefCounted<SpdySession>, |
// true when SSL is in use. |
bool GetSSLCertRequestInfo(SSLCertRequestInfo* cert_request_info); |
- // Returns the OriginBoundCertService used by this Socket, or NULL |
- // Origin Bound Certs are not supported in this session. |
- OriginBoundCertService* GetOriginBoundCertService() const; |
+ // Returns the ServerBoundCertService used by this Socket, or NULL |
+ // if server bound certs are not supported in this session. |
+ ServerBoundCertService* GetServerBoundCertService() const; |
- // Returns the type of the origin bound cert that was sent, or |
+ // Returns the type of the domain bound cert that was sent, or |
// CLIENT_CERT_INVALID_TYPE if none was sent. |
- SSLClientCertType GetOriginBoundCertType() const; |
+ SSLClientCertType GetDomainBoundCertType() const; |
// Reset all static settings to initialized values. Used to init test suite. |
static void ResetStaticSettingsToInit(); |
@@ -269,7 +269,7 @@ class NET_EXPORT SpdySession : public base::RefCounted<SpdySession>, |
int GetLocalAddress(IPEndPoint* address) const; |
// Returns true if a request for a resource in |origin| requires a |
- // SPDY CREDENTIAL frame to be sent first, with an origin bound certificate. |
+ // SPDY CREDENTIAL frame to be sent first, with a domain bound certificate. |
bool NeedsCredentials(const HostPortPair& origin) const; |
// Adds |alias| to set of aliases associated with this session. |