OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef PPAPI_TESTS_TEST_HOST_RESOLVER_H_ | 5 #ifndef PPAPI_TESTS_TEST_HOST_RESOLVER_H_ |
6 #define PPAPI_TESTS_TEST_HOST_RESOLVER_H_ | 6 #define PPAPI_TESTS_TEST_HOST_RESOLVER_H_ |
7 | 7 |
| 8 #include <stdint.h> |
| 9 |
8 #include <string> | 10 #include <string> |
9 | 11 |
10 #include "ppapi/c/ppb_host_resolver.h" | 12 #include "ppapi/c/ppb_host_resolver.h" |
11 #include "ppapi/tests/test_case.h" | 13 #include "ppapi/tests/test_case.h" |
12 | 14 |
13 namespace pp { | 15 namespace pp { |
14 class HostResolver; | 16 class HostResolver; |
15 class NetAddress; | 17 class NetAddress; |
16 class TCPSocket; | 18 class TCPSocket; |
17 } // namespace pp | 19 } // namespace pp |
(...skipping 28 matching lines...) Expand all Loading... |
46 | 48 |
47 std::string TestEmpty(); | 49 std::string TestEmpty(); |
48 std::string TestResolve(); | 50 std::string TestResolve(); |
49 std::string TestResolveIPv4(); | 51 std::string TestResolveIPv4(); |
50 | 52 |
51 std::string host_; | 53 std::string host_; |
52 uint16_t port_; | 54 uint16_t port_; |
53 }; | 55 }; |
54 | 56 |
55 #endif // PPAPI_TESTS_TEST_HOST_RESOLVER_H_ | 57 #endif // PPAPI_TESTS_TEST_HOST_RESOLVER_H_ |
OLD | NEW |