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

Side by Side Diff: remoting/protocol/jingle_session_manager.h

Issue 9071001: base::Bind: Remove ScopedRunnableMethodFactory. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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
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 REMOTING_PROTOCOL_JINGLE_SESSION_MANAGER_H_ 5 #ifndef REMOTING_PROTOCOL_JINGLE_SESSION_MANAGER_H_
6 #define REMOTING_PROTOCOL_JINGLE_SESSION_MANAGER_H_ 6 #define REMOTING_PROTOCOL_JINGLE_SESSION_MANAGER_H_
7 7
8 #include <list> 8 #include <list>
9 #include <string> 9 #include <string>
10 10
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 scoped_ptr<cricket::PortAllocator> port_allocator_; 104 scoped_ptr<cricket::PortAllocator> port_allocator_;
105 cricket::HttpPortAllocator* http_port_allocator_; 105 cricket::HttpPortAllocator* http_port_allocator_;
106 scoped_ptr<cricket::SessionManager> cricket_session_manager_; 106 scoped_ptr<cricket::SessionManager> cricket_session_manager_;
107 scoped_ptr<JingleInfoRequest> jingle_info_request_; 107 scoped_ptr<JingleInfoRequest> jingle_info_request_;
108 scoped_ptr<JingleSignalingConnector> jingle_signaling_connector_; 108 scoped_ptr<JingleSignalingConnector> jingle_signaling_connector_;
109 109
110 bool closed_; 110 bool closed_;
111 111
112 std::list<JingleSession*> sessions_; 112 std::list<JingleSession*> sessions_;
113 113
114 ScopedRunnableMethodFactory<JingleSessionManager> task_factory_;
115
116 DISALLOW_COPY_AND_ASSIGN(JingleSessionManager); 114 DISALLOW_COPY_AND_ASSIGN(JingleSessionManager);
117 }; 115 };
118 116
119 } // namespace protocol 117 } // namespace protocol
120 } // namespace remoting 118 } // namespace remoting
121 119
122 #endif // REMOTING_PROTOCOL_JINGLE_SESSION_MANAGER_H_ 120 #endif // REMOTING_PROTOCOL_JINGLE_SESSION_MANAGER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698