Chromium Code Reviews| Index: content/browser/renderer_host/p2p/socket_host.h |
| =================================================================== |
| --- content/browser/renderer_host/p2p/socket_host.h (revision 206737) |
| +++ content/browser/renderer_host/p2p/socket_host.h (working copy) |
| @@ -14,6 +14,10 @@ |
| class Sender; |
| } |
| +namespace net { |
| +class URLRequestContextGetter; |
| +} |
| + |
| namespace content { |
| // Base class for P2P sockets. |
| @@ -22,7 +26,8 @@ |
| static const int kStunHeaderSize = 20; |
| // Creates P2PSocketHost of the specific type. |
| static P2PSocketHost* Create(IPC::Sender* message_sender, |
| - int id, P2PSocketType type); |
| + int id, P2PSocketType type, |
| + net::URLRequestContextGetter* getter); |
|
Sergey Ulanov
2013/06/20 01:50:02
nit: call it url_context? |getter| is too ambiguou
Mallinath (Gone from Chromium)
2013/06/20 05:24:15
Done.
|
| virtual ~P2PSocketHost(); |