Index: libraries/nacl-mounts/net/TcpSocket.h |
=================================================================== |
--- libraries/nacl-mounts/net/TcpSocket.h (revision 617) |
+++ libraries/nacl-mounts/net/TcpSocket.h (working copy) |
@@ -12,6 +12,7 @@ |
#include "../net/Socket.h" |
#include "../net/SocketSubSystem.h" |
#include "ppapi/cpp/completion_callback.h" |
+#include "ppapi/utility/non_thread_safe_ref_count.h" |
jvoung - send to chromium...
2012/08/21 16:37:28
What I meant was that this header doesn't exist an
|
#include "../ppapi/cpp/private/tcp_socket_private.h" |
#include "../util/PthreadHelpers.h" |
@@ -61,7 +62,7 @@ |
SocketSubSystem* sys_; |
int ref_; |
int oflag_; |
- pp::CompletionCallbackFactory<TCPSocket, ThreadSafeRefCount> factory_; |
+ pp::CompletionCallbackFactory<TCPSocket, pp::NonThreadSafeRefCount> factory_; |
pp::TCPSocketPrivate* socket_; |
std::deque<char> in_buf_; |
std::vector<char> out_buf_; |