From 33661e48840aaf44b3efe090b3e947ef83f67a0a Mon Sep 17 00:00:00 2001 From: "rch@chromium.org" Date: Tue, 3 Apr 2012 16:16:26 +0000 Subject: Add a new GetNegotiatedProtocol method to StreamSocket and implement in all subclasses. BUG=120890 Review URL: https://chromiumcodereview.appspot.com/9958028 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@130388 0039d316-1c4b-4281-b951-d872f2087c98 --- net/socket/tcp_client_socket_libevent.cc | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'net/socket/tcp_client_socket_libevent.cc') diff --git a/net/socket/tcp_client_socket_libevent.cc b/net/socket/tcp_client_socket_libevent.cc index 9b47249..b17f52f 100644 --- a/net/socket/tcp_client_socket_libevent.cc +++ b/net/socket/tcp_client_socket_libevent.cc @@ -1,4 +1,4 @@ -// Copyright (c) 2011 The Chromium Authors. All rights reserved. +// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -733,4 +733,8 @@ base::TimeDelta TCPClientSocketLibevent::GetConnectTimeMicros() const { return connect_time_micros_; } +NextProto TCPClientSocketLibevent::GetNegotiatedProtocol() const { + return kProtoUnknown; +} + } // namespace net -- cgit v1.1