Chromium Code Reviews| Index: content/browser/renderer_host/pepper_tcp_socket.h |
| diff --git a/content/browser/renderer_host/pepper_tcp_socket.h b/content/browser/renderer_host/pepper_tcp_socket.h |
| index bc9c6b652948cb6d3efc78df46e725ba83d666c3..052f88eab6c99f0dc56a2a0c11c1a641529b84d9 100644 |
| --- a/content/browser/renderer_host/pepper_tcp_socket.h |
| +++ b/content/browser/renderer_host/pepper_tcp_socket.h |
| @@ -1,4 +1,4 @@ |
| -// Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| +// Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| @@ -32,6 +32,13 @@ class PepperTCPSocket { |
| int32 routing_id, |
| uint32 plugin_dispatcher_id, |
| uint32 socket_id); |
| + |
| + // Used for creation already connected sockets. |
|
brettw
2012/02/09 00:13:48
Ditto with passing ownership of the socket here.
ygorshenin1
2012/02/09 15:00:10
Done.
|
| + PepperTCPSocket(PepperMessageFilter* manager, |
| + int32 routing_id, |
| + uint32 plugin_dispatcher_id, |
| + uint32 socket_id, |
| + net::StreamSocket* socket); |
| ~PepperTCPSocket(); |
| void Connect(const std::string& host, uint16_t port); |