Chromium Code Reviews| Index: ppapi/cpp/private/flash_tcp_socket.h |
| diff --git a/ppapi/cpp/private/flash_tcp_socket.h b/ppapi/cpp/private/flash_tcp_socket.h |
| deleted file mode 100644 |
| index b7ead00bb3126b878641a7a3ff5608b9b0953df9..0000000000000000000000000000000000000000 |
| --- a/ppapi/cpp/private/flash_tcp_socket.h |
| +++ /dev/null |
| @@ -1,49 +0,0 @@ |
| -// Copyright (c) 2011 The Chromium Authors. All rights reserved. |
|
viettrungluu
2011/11/09 18:50:19
Please keep the existing Flash TCP stuff working.
Dmitry Polukhin
2011/11/09 19:00:31
It would be good to be able to test what is actual
Dmitry Polukhin
2011/11/10 15:10:11
Done.
|
| -// Use of this source code is governed by a BSD-style license that can be |
| -// found in the LICENSE file. |
| - |
| -// TODO(yzshen): This (and the .cc file) contain C++ wrappers for things |
| -// in ppapi/c/private/ppb_flash_tcp_socket.h. This is currently not used in |
| -// (or even compiled with) Chromium. |
| - |
| -#ifndef PPAPI_CPP_PRIVATE_FLASH_TCP_SOCKET_H_ |
| -#define PPAPI_CPP_PRIVATE_FLASH_TCP_SOCKET_H_ |
| - |
| -#include "ppapi/c/pp_stdint.h" |
| -#include "ppapi/c/private/ppb_flash_tcp_socket.h" |
| -#include "ppapi/cpp/resource.h" |
| - |
| -namespace pp { |
| - |
| -class CompletionCallback; |
| -class Instance; |
| - |
| -namespace flash { |
| - |
| -class TCPSocket : public Resource { |
| - public: |
| - explicit TCPSocket(Instance* instance); |
| - |
| - int32_t Connect(const char* host, |
| - uint16_t port, |
| - const CompletionCallback& callback); |
| - int32_t ConnectWithNetAddress(const PP_Flash_NetAddress* addr, |
| - const CompletionCallback& callback); |
| - bool GetLocalAddress(PP_Flash_NetAddress* local_addr); |
| - bool GetRemoteAddress(PP_Flash_NetAddress* remote_addr); |
| - int32_t SSLHandshake(const char* server_name, |
| - uint16_t server_port, |
| - const CompletionCallback& callback); |
| - int32_t Read(char* buffer, |
| - int32_t bytes_to_read, |
| - const CompletionCallback& callback); |
| - int32_t Write(const char* buffer, |
| - int32_t bytes_to_write, |
| - const CompletionCallback& callback); |
| - void Disconnect(); |
| -}; |
| - |
| -} // namespace flash |
| -} // namespace pp |
| - |
| -#endif // PPAPI_CPP_PRIVATE_FLASH_TCP_SOCKET_H_ |