OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_TRANSPORT_H_ | 5 #ifndef PPAPI_TESTS_TEST_TRANSPORT_H_ |
6 #define PPAPI_TESTS_TEST_TRANSPORT_H_ | 6 #define PPAPI_TESTS_TEST_TRANSPORT_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "ppapi/c/dev/ppb_transport_dev.h" | 10 #include "ppapi/c/dev/ppb_transport_dev.h" |
11 #include "ppapi/tests/test_case.h" | 11 #include "ppapi/tests/test_case.h" |
12 | 12 |
13 struct PPB_Transport_Dev; | |
14 | |
15 namespace pp { | 13 namespace pp { |
16 class Transport_Dev; | 14 class Transport_Dev; |
17 } // namespace pp | 15 } // namespace pp |
18 | 16 |
19 class TestTransport : public TestCase { | 17 class TestTransport : public TestCase { |
20 public: | 18 public: |
21 explicit TestTransport(TestingInstance* instance) | 19 explicit TestTransport(TestingInstance* instance) |
22 : TestCase(instance), | 20 : TestCase(instance), |
23 transport1_(NULL), | 21 transport1_(NULL), |
24 transport2_(NULL) { | 22 transport2_(NULL) { |
(...skipping 19 matching lines...) Expand all Loading... |
44 std::string TestConnectAndCloseUdp(); | 42 std::string TestConnectAndCloseUdp(); |
45 | 43 |
46 // Used by the tests that access the C API directly. | 44 // Used by the tests that access the C API directly. |
47 const PPB_Transport_Dev* transport_interface_; | 45 const PPB_Transport_Dev* transport_interface_; |
48 | 46 |
49 pp::Transport_Dev* transport1_; | 47 pp::Transport_Dev* transport1_; |
50 pp::Transport_Dev* transport2_; | 48 pp::Transport_Dev* transport2_; |
51 }; | 49 }; |
52 | 50 |
53 #endif // PPAPI_TESTS_TEST_TRANSPORT_H_ | 51 #endif // PPAPI_TESTS_TEST_TRANSPORT_H_ |
OLD | NEW |