Commit 6e56662f authored by pliard@chromium.org's avatar pliard@chromium.org

Remove unnecessary assignment in transport_client_socket_unittest.cc.

This is part of Chrome for Android upstreaming.

This line was introduced by r137387 which turned |sock| into a scoped_refptr
rather than a raw pointer (that needed to be initialized). This assignment is
obviously not needed anymore.

Internally we don't have this extra '= NULL' which causes an unnecessary diff.

BUG=136750


Review URL: https://chromiumcodereview.appspot.com/10855123

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@151276 0039d316-1c4b-4281-b951-d872f2087c98
parent 9852fb86
......@@ -103,7 +103,7 @@ void TransportClientSocketTest::SetUp() {
::testing::TestWithParam<ClientSocketTestTypes>::SetUp();
// Find a free port to listen on
scoped_refptr<TCPListenSocket> sock = NULL;
scoped_refptr<TCPListenSocket> sock;
int port;
// Range of ports to listen on. Shouldn't need to try many.
const int kMinPort = 10100;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment