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

Unified Diff: net/spdy/spdy_stream.h

Issue 9617039: Change Origin bound certs -> Domain bound certs. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rename all the things 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/spdy/spdy_stream.h
diff --git a/net/spdy/spdy_stream.h b/net/spdy/spdy_stream.h
index a7342a7a4cb64a40a981fb3343857a531bd28056..72bafbf98a68d32de00479b788b06e078f7451ad 100644
--- a/net/spdy/spdy_stream.h
+++ b/net/spdy/spdy_stream.h
@@ -256,10 +256,10 @@ class NET_EXPORT_PRIVATE SpdyStream
private:
enum State {
STATE_NONE,
- STATE_GET_ORIGIN_BOUND_CERT,
- STATE_GET_ORIGIN_BOUND_CERT_COMPLETE,
- STATE_SEND_ORIGIN_BOUND_CERT,
- STATE_SEND_ORIGIN_BOUND_CERT_COMPLETE,
+ STATE_GET_DOMAIN_BOUND_CERT,
+ STATE_GET_DOMAIN_BOUND_CERT_COMPLETE,
+ STATE_SEND_DOMAIN_BOUND_CERT,
+ STATE_SEND_DOMAIN_BOUND_CERT_COMPLETE,
STATE_SEND_HEADERS,
STATE_SEND_HEADERS_COMPLETE,
STATE_SEND_BODY,
@@ -272,16 +272,16 @@ class NET_EXPORT_PRIVATE SpdyStream
friend class base::RefCounted<SpdyStream>;
virtual ~SpdyStream();
- void OnGetOriginBoundCertComplete(int result);
+ void OnGetDomainBoundCertComplete(int result);
// Try to make progress sending/receiving the request/response.
int DoLoop(int result);
// The implementations of each state of the state machine.
- int DoGetOriginBoundCert();
- int DoGetOriginBoundCertComplete(int result);
- int DoSendOriginBoundCert();
- int DoSendOriginBoundCertComplete(int result);
+ int DoGetDomainBoundCert();
+ int DoGetDomainBoundCertComplete(int result);
+ int DoSendDomainBoundCert();
+ int DoSendDomainBoundCertComplete(int result);
int DoSendHeaders();
int DoSendHeadersComplete(int result);
int DoSendBody();
@@ -351,10 +351,10 @@ class NET_EXPORT_PRIVATE SpdyStream
// Data received before delegate is attached.
std::vector<scoped_refptr<IOBufferWithSize> > pending_buffers_;
- SSLClientCertType ob_cert_type_;
- std::string ob_private_key_;
- std::string ob_cert_;
- OriginBoundCertService::RequestHandle ob_cert_request_handle_;
+ SSLClientCertType domain_bound_cert_type_;
+ std::string domain_bound_private_key_;
+ std::string domain_bound_cert_;
+ ServerBoundCertService::RequestHandle domain_bound_cert_request_handle_;
DISALLOW_COPY_AND_ASSIGN(SpdyStream);
};

Powered by Google App Engine
This is Rietveld 408576698