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

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

Issue 8506016: Remove 'Flash' from TCP/UDP Pepper interfaces. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: update 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
Index: ppapi/cpp/private/tcp_socket_private.h
diff --git a/ppapi/cpp/private/tcp_socket_private.h b/ppapi/cpp/private/tcp_socket_private.h
new file mode 100644
index 0000000000000000000000000000000000000000..08d4c1dab0330109db379de678a9489766463bb5
--- /dev/null
+++ b/ppapi/cpp/private/tcp_socket_private.h
@@ -0,0 +1,42 @@
+// 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_TCP_SOCKET_PRIVATE_H_
+#define PPAPI_CPP_PRIVATE_TCP_SOCKET_PRIVATE_H_
+
+#include "ppapi/c/pp_stdint.h"
+#include "ppapi/c/private/ppb_tcp_socket_private.h"
+#include "ppapi/cpp/resource.h"
+
+namespace pp {
+
+class CompletionCallback;
+class Instance;
+
+class TCPSocket : public Resource {
yzshen1 2011/11/11 21:04:28 It should have "Private" in the name. (So that it
Dmitry Polukhin 2011/11/14 13:03:02 Done.
+ public:
+ explicit TCPSocket(Instance* instance);
+
+ 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 pp
+
+#endif // PPAPI_CPP_PRIVATE_TCP_SOCKET_PRIVATE_H_

Powered by Google App Engine
This is Rietveld 408576698