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

Unified Diff: net/spdy/spdy_session.cc

Issue 9521011: Remove the origin field from the CREDENTIAL frame. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 10 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
« no previous file with comments | « net/spdy/spdy_protocol.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/spdy/spdy_session.cc
diff --git a/net/spdy/spdy_session.cc b/net/spdy/spdy_session.cc
index b119db4c37a4901fb5a3350d47d03216d5023aab..88091242a43bab749dc2a2a838fb25df2e4c8be9 100644
--- a/net/spdy/spdy_session.cc
+++ b/net/spdy/spdy_session.cc
@@ -679,7 +679,6 @@ int SpdySession::WriteCredentialFrame(const std::string& origin,
GURL origin_url(origin);
credential.slot =
credential_state_.SetHasCredential(HostPortPair::FromURL(origin_url));
- credential.origin = origin;
credential.certs.push_back(cert);
credential.proof.assign(proof.begin(), proof.end());
@@ -692,7 +691,7 @@ int SpdySession::WriteCredentialFrame(const std::string& origin,
NetLog::TYPE_SPDY_SESSION_SEND_CREDENTIAL,
make_scoped_refptr(
new NetLogSpdyCredentialParameter(credential.slot,
- credential.origin)));
+ origin)));
}
return ERR_IO_PENDING;
}
« no previous file with comments | « net/spdy/spdy_protocol.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698