| 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..924b757de1e03e71b3a569c52ccbec30847cc2bc 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,14 @@ class PepperTCPSocket {
|
| int32 routing_id,
|
| uint32 plugin_dispatcher_id,
|
| uint32 socket_id);
|
| +
|
| + // Used for creation already connected sockets. Takes ownership of
|
| + // |socket|.
|
| + 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);
|
|
|