Index: net/quic/crypto/source_address_token.h |
diff --git a/net/quic/crypto/source_address_token.h b/net/quic/crypto/source_address_token.h |
index fbb50b1028e5b809cd61abf0c46f7d12c4bf92f2..317095892099488a0e3c787b8583a9ea4fb60393 100644 |
--- a/net/quic/crypto/source_address_token.h |
+++ b/net/quic/crypto/source_address_token.h |
@@ -22,21 +22,13 @@ class SourceAddressToken { |
bool ParseFromArray(const char* plaintext, size_t plaintext_length); |
- std::string ip() const { |
- return ip_; |
- } |
+ std::string ip() const { return ip_; } |
- int64 timestamp() const { |
- return timestamp_; |
- } |
+ int64 timestamp() const { return timestamp_; } |
- void set_ip(base::StringPiece ip) { |
- ip_ = ip.as_string(); |
- } |
+ void set_ip(base::StringPiece ip) { ip_ = ip.as_string(); } |
- void set_timestamp(int64 timestamp) { |
- timestamp_ = timestamp; |
- } |
+ void set_timestamp(int64 timestamp) { timestamp_ = timestamp; } |
private: |
std::string ip_; |