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

Unified Diff: content/browser/renderer_host/p2p/socket_host.cc

Issue 10662005: Use IPC::Sender and IPC::Listener in content. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 6 months 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
Index: content/browser/renderer_host/p2p/socket_host.cc
diff --git a/content/browser/renderer_host/p2p/socket_host.cc b/content/browser/renderer_host/p2p/socket_host.cc
index 16c09172ed6473c91c00324ecad924f40ec85cf4..f17ae9e46de14dc3618d4072f1804c288c54dbc9 100644
--- a/content/browser/renderer_host/p2p/socket_host.cc
+++ b/content/browser/renderer_host/p2p/socket_host.cc
@@ -16,7 +16,7 @@ const uint32 kStunMagicCookie = 0x2112A442;
namespace content {
-P2PSocketHost::P2PSocketHost(IPC::Message::Sender* message_sender,
+P2PSocketHost::P2PSocketHost(IPC::Sender* message_sender,
int routing_id, int id)
: message_sender_(message_sender),
routing_id_(routing_id),
@@ -75,7 +75,7 @@ bool P2PSocketHost::IsRequestOrResponse(StunMessageType type) {
// static
P2PSocketHost* P2PSocketHost::Create(
- IPC::Message::Sender* message_sender, int routing_id, int id,
+ IPC::Sender* message_sender, int routing_id, int id,
P2PSocketType type) {
switch (type) {
case P2P_SOCKET_UDP:
« no previous file with comments | « content/browser/renderer_host/p2p/socket_host.h ('k') | content/browser/renderer_host/p2p/socket_host_tcp.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698