summaryrefslogtreecommitdiffstats
path: root/net/quic/quic_socket_address_coder.h
diff options
context:
space:
mode:
Diffstat (limited to 'net/quic/quic_socket_address_coder.h')
-rw-r--r--net/quic/quic_socket_address_coder.h8
1 files changed, 2 insertions, 6 deletions
diff --git a/net/quic/quic_socket_address_coder.h b/net/quic/quic_socket_address_coder.h
index 36ad1d03..852682e 100644
--- a/net/quic/quic_socket_address_coder.h
+++ b/net/quic/quic_socket_address_coder.h
@@ -26,13 +26,9 @@ class NET_EXPORT_PRIVATE QuicSocketAddressCoder {
bool Decode(const char* data, size_t length);
- IPAddressNumber ip() const {
- return address_.address();
- }
+ IPAddressNumber ip() const { return address_.address(); }
- uint16 port() const {
- return address_.port();
- }
+ uint16 port() const { return address_.port(); }
private:
IPEndPoint address_;