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

Unified Diff: ppapi/tests/test_tcp_socket_private_shared.h

Issue 8804006: Reland 8688002: PPB_TCPSocket_Private/PPB_UDPSocket_Private are exposed to Browser (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix destruction issue Created 9 years 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 | « ppapi/shared_impl/private/udp_socket_private_impl.cc ('k') | ppapi/tests/test_tcp_socket_private_shared.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/tests/test_tcp_socket_private_shared.h
diff --git a/ppapi/tests/test_tcp_socket_private_shared.h b/ppapi/tests/test_tcp_socket_private_shared.h
new file mode 100644
index 0000000000000000000000000000000000000000..72b43b885aa79344d4869102fe906a024e0d9815
--- /dev/null
+++ b/ppapi/tests/test_tcp_socket_private_shared.h
@@ -0,0 +1,49 @@
+// 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_TESTS_TEST_TCP_SOCKET_PRIVATE_SHARED_H_
+#define PPAPI_TESTS_TEST_TCP_SOCKET_PRIVATE_SHARED_H_
+
+#include <string>
+
+#include "ppapi/c/pp_stdint.h"
+#include "ppapi/cpp/private/tcp_socket_private.h"
+#include "ppapi/tests/test_case.h"
+
+class TestTCPSocketPrivateShared : public TestCase {
+ public:
+ explicit TestTCPSocketPrivateShared(TestingInstance* instance);
+
+ // TestCase implementation.
+ virtual bool Init();
+ virtual void RunTests(const std::string& filter);
+
+ void QuitMessageLoop();
+
+ private:
+ static const char* const kHost;
+ static const int kPort = 443;
+
+ std::string CreateSocket(PP_Resource* socket);
+ std::string SyncConnect(PP_Resource socket, const char* host, int port);
+ std::string SyncConnectWithNetAddress(PP_Resource socket,
+ const PP_NetAddress_Private& addr);
+ std::string SyncSSLHandshake(PP_Resource socket, const char* host, int port);
+ std::string SyncRead(PP_Resource socket, char* buffer, int32_t num_bytes,
+ int32_t* bytes_read);
+ std::string SyncWrite(PP_Resource socket, const char* buffer,
+ int32_t num_bytes, int32_t* bytes_wrote);
+ std::string CheckHTTPResponse(PP_Resource socket,
+ const std::string& request,
+ const std::string& response);
+
+ std::string TestCreate();
+ std::string TestGetAddress();
+ std::string TestConnect();
+ std::string TestReconnect();
+
+ const PPB_TCPSocket_Private* tcp_socket_private_interface_;
+};
+
+#endif // PPAPI_TESTS_TEST_TCP_SOCKET_PRIVATE_SHARED_H_
« no previous file with comments | « ppapi/shared_impl/private/udp_socket_private_impl.cc ('k') | ppapi/tests/test_tcp_socket_private_shared.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698