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

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

Issue 14816006: Land Recent QUIC changes (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Added missing NET_PRIVATE_EXPORT to QuicWallTime Created 7 years, 7 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/quic/crypto/crypto_server_config.cc ('k') | net/quic/crypto/crypto_utils.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/crypto/crypto_server_config_protobuf.h
diff --git a/net/quic/crypto/crypto_server_config_protobuf.h b/net/quic/crypto/crypto_server_config_protobuf.h
index a4ef81b98c93d2d6c390609e08cf0463d8fe41aa..62b7b6fb23973a23aa8d4ade71d8e1d3ffafcc55 100644
--- a/net/quic/crypto/crypto_server_config_protobuf.h
+++ b/net/quic/crypto/crypto_server_config_protobuf.h
@@ -19,10 +19,10 @@ class QuicServerConfigProtobuf {
public:
class PrivateKey {
public:
- CryptoTag tag() const {
+ QuicTag tag() const {
return tag_;
}
- void set_tag(CryptoTag tag) {
+ void set_tag(QuicTag tag) {
tag_ = tag;
}
std::string private_key() const {
@@ -33,7 +33,7 @@ class QuicServerConfigProtobuf {
}
private:
- CryptoTag tag_;
+ QuicTag tag_;
std::string private_key_;
};
« no previous file with comments | « net/quic/crypto/crypto_server_config.cc ('k') | net/quic/crypto/crypto_utils.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698