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

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

Issue 8989006: Update PPAPI IDL generator to define versioned structs, and unversioned typedef. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase for line-wrap. Created 8 years, 11 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/test_memory.h ('k') | ppapi/tests/test_url_loader.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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_
OLDNEW
« no previous file with comments | « ppapi/tests/test_memory.h ('k') | ppapi/tests/test_url_loader.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698