[android] Rename create socket function.

This commit is contained in:
Sergey Yershov 2016-10-21 19:41:22 +03:00
parent 9e736d00a5
commit 8314310c0e

View file

@ -71,5 +71,5 @@ private:
jobject m_self;
};
unique_ptr<Socket> createSocket() { return make_unique<SocketImpl>(); }
unique_ptr<Socket> CreateSocket() { return make_unique<SocketImpl>(); }
}