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

Unified Diff: ppapi/cpp/private/flash_tcp_socket.h

Issue 8597018: Pepper: Remove ppapi/cpp/private/flash_tcp_socket.*. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 1 month 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
« no previous file with comments | « no previous file | ppapi/cpp/private/flash_tcp_socket.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 7d68abb171dfacb5a67cedfbf3c1a44ad88b0bf0..0000000000000000000000000000000000000000
--- a/ppapi/cpp/private/flash_tcp_socket.h
+++ /dev/null
@@ -1,48 +0,0 @@
-// Copyright (c) 2011 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.
-
-#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);
-
- // Returns true if the required interface is available.
- static bool IsAvailable();
-
- int32_t Connect(const char* host,
- uint16_t port,
- const CompletionCallback& callback);
- int32_t ConnectWithNetAddress(const PP_NetAddress_Private* addr,
- const CompletionCallback& callback);
- bool GetLocalAddress(PP_NetAddress_Private* local_addr);
- bool GetRemoteAddress(PP_NetAddress_Private* 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_
« no previous file with comments | « no previous file | ppapi/cpp/private/flash_tcp_socket.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698