| Index: content/public/renderer/p2p_socket_client.h
|
| diff --git a/content/public/renderer/p2p_socket_client.h b/content/public/renderer/p2p_socket_client.h
|
| index 5bddb27998ecb594c0294a0f5e7cc8404f8dd638..6df92851243f25d4cff9c1ebc9762d2f5a7fa2d0 100644
|
| --- a/content/public/renderer/p2p_socket_client.h
|
| +++ b/content/public/renderer/p2p_socket_client.h
|
| @@ -8,6 +8,7 @@
|
| #include <vector>
|
|
|
| #include "base/memory/ref_counted.h"
|
| +#include "content/common/content_export.h"
|
| #include "content/public/common/p2p_socket_type.h"
|
| #include "net/base/ip_endpoint.h"
|
|
|
| @@ -18,7 +19,8 @@ class P2PSocketClientDelegate;
|
| // P2P socket that routes all calls over IPC.
|
| // Note that while ref-counting is thread-safe, all methods must be
|
| // called on the same thread.
|
| -class P2PSocketClient : public base::RefCountedThreadSafe<P2PSocketClient> {
|
| +class CONTENT_EXPORT P2PSocketClient :
|
| + public base::RefCountedThreadSafe<P2PSocketClient> {
|
| public:
|
| // Create a new P2PSocketClient() of the specified |type| and connected to
|
| // the specified |address|. |address| matters only when |type| is set to
|
|
|