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

Side by Side Diff: ppapi/tests/test_udp_socket.h

Issue 16282005: Introduce PPB_UDPSocket_Dev. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 7 years, 6 months 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « ppapi/tests/all_cpp_includes.h ('k') | ppapi/tests/test_udp_socket.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef PPAPI_TESTS_TEST_UDP_SOCKET_H_
6 #define PPAPI_TESTS_TEST_UDP_SOCKET_H_
7
8 #include <string>
9
10 #include "ppapi/c/pp_stdint.h"
11 #include "ppapi/cpp/dev/net_address_dev.h"
12 #include "ppapi/tests/test_case.h"
13
14 namespace pp {
15 class UDPSocket_Dev;
16 }
17
18 class TestUDPSocket: public TestCase {
19 public:
20 explicit TestUDPSocket(TestingInstance* instance);
21
22 // TestCase implementation.
23 virtual bool Init();
24 virtual void RunTests(const std::string& filter);
25
26 private:
27 std::string GetLocalAddress(pp::NetAddress_Dev* address);
28 std::string SetBroadcastOptions(pp::UDPSocket_Dev* socket);
29 std::string BindUDPSocket(pp::UDPSocket_Dev* socket,
30 const pp::NetAddress_Dev& address);
31 std::string LookupPortAndBindUDPSocket(pp::UDPSocket_Dev* socket,
32 pp::NetAddress_Dev* address);
33 std::string ReadSocket(pp::UDPSocket_Dev* socket,
34 pp::NetAddress_Dev* address,
35 size_t size,
36 std::string* message);
37 std::string PassMessage(pp::UDPSocket_Dev* target,
38 pp::UDPSocket_Dev* source,
39 const pp::NetAddress_Dev& target_address,
40 const std::string& message,
41 pp::NetAddress_Dev* recvfrom_address);
42
43 std::string TestReadWrite();
44 std::string TestBroadcast();
45 std::string TestSetOption();
46
47 pp::NetAddress_Dev address_;
48 };
49
50 #endif // PPAPI_TESTS_TEST_UDP_SOCKET_H_
OLDNEW
« no previous file with comments | « ppapi/tests/all_cpp_includes.h ('k') | ppapi/tests/test_udp_socket.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698