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

Side by Side Diff: webkit/plugins/ppapi/ppb_transport_impl.h

Issue 8824006: Migrate net/socket/socket.h, net/socket/stream_socket.h to base::Bind(). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebased Created 9 years 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
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 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
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_
OLDNEW
« no previous file with comments | « remoting/protocol/v1_host_channel_authenticator.cc ('k') | webkit/plugins/ppapi/ppb_transport_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698