Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2086)

Unified Diff: content/public/renderer/p2p_socket_client.h

Issue 66293003: P2P <-> cast library integration v0.1 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: comments addressed Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/renderer/media/cast_udp_transport.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « chrome/renderer/media/cast_udp_transport.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698