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

Side by Side Diff: remoting/host/jingle_session_manager_factory.h

Issue 10538091: [Chromoting] Make ChromotingHost's dependency on libjingle injected, instead of hard-coded. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 6 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
(Empty)
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef REMOTING_HOST_JINGLE_SESSION_MANAGER_FACTORY_H_
6 #define REMOTING_HOST_JINGLE_SESSION_MANAGER_FACTORY_H_
7
8 #include "remoting/host/session_manager_factory.h"
9
10 namespace remoting {
11
12 struct NetworkSettings;
13
14 class JingleSessionManagerFactory : public SessionManagerFactory {
Wez 2012/06/11 22:17:06 Add a brief comment explaining what this factory m
simonmorris 2012/06/11 23:08:59 Done.
15 public:
16 JingleSessionManagerFactory();
17 virtual ~JingleSessionManagerFactory() OVERRIDE;
Wez 2012/06/11 22:17:06 You don't need OVERRIDE on dtors.
simonmorris 2012/06/11 23:08:59 Done.
18
19 virtual scoped_ptr<protocol::SessionManager> MakeSessionManager(
Wez 2012/06/11 22:17:06 nit: CreateSessionManager is more in keeping with
simonmorris 2012/06/11 23:08:59 Done.
20 const NetworkSettings& network_settings,
21 const scoped_refptr<net::URLRequestContextGetter>&
22 url_request_context_getter) OVERRIDE;
Wez 2012/06/11 22:17:06 You're missing the disallow-copy-and-assign macro
simonmorris 2012/06/11 23:08:59 Done.
23 };
24
25 } // namespace remoting
26
27 #endif // REMOTING_HOST_JINGLE_SESSION_MANAGER_FACTORY_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698