| 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 WEBKIT_PLUGINS_PPAPI_PPB_TRANSPORT_IMPL_H_ | 5 #ifndef WEBKIT_PLUGINS_PPAPI_PPB_TRANSPORT_IMPL_H_ |
| 6 #define WEBKIT_PLUGINS_PPAPI_PPB_TRANSPORT_IMPL_H_ | 6 #define WEBKIT_PLUGINS_PPAPI_PPB_TRANSPORT_IMPL_H_ |
| 7 | 7 |
| 8 #include <list> | 8 #include <list> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 scoped_ptr<webkit_glue::P2PTransport> p2p_transport_; | 66 scoped_ptr<webkit_glue::P2PTransport> p2p_transport_; |
| 67 bool writable_; | 67 bool writable_; |
| 68 std::list<std::string> local_candidates_; | 68 std::list<std::string> local_candidates_; |
| 69 | 69 |
| 70 scoped_refptr<TrackedCompletionCallback> connect_callback_; | 70 scoped_refptr<TrackedCompletionCallback> connect_callback_; |
| 71 scoped_refptr<TrackedCompletionCallback> next_address_callback_; | 71 scoped_refptr<TrackedCompletionCallback> next_address_callback_; |
| 72 | 72 |
| 73 scoped_refptr<TrackedCompletionCallback> recv_callback_; | 73 scoped_refptr<TrackedCompletionCallback> recv_callback_; |
| 74 scoped_refptr<TrackedCompletionCallback> send_callback_; | 74 scoped_refptr<TrackedCompletionCallback> send_callback_; |
| 75 | 75 |
| 76 net::OldCompletionCallbackImpl<PPB_Transport_Impl> channel_write_callback_; | |
| 77 net::OldCompletionCallbackImpl<PPB_Transport_Impl> channel_read_callback_; | |
| 78 | |
| 79 DISALLOW_COPY_AND_ASSIGN(PPB_Transport_Impl); | 76 DISALLOW_COPY_AND_ASSIGN(PPB_Transport_Impl); |
| 80 }; | 77 }; |
| 81 | 78 |
| 82 } // namespace ppapi | 79 } // namespace ppapi |
| 83 } // namespace webkit | 80 } // namespace webkit |
| 84 | 81 |
| 85 #endif // WEBKIT_PLUGINS_PPAPI_PPB_TRANSPORT_IMPL_H_ | 82 #endif // WEBKIT_PLUGINS_PPAPI_PPB_TRANSPORT_IMPL_H_ |
| OLD | NEW |