HomeSort by relevance Sort by last modified time
    Searched refs:SessionManager (Results 1 - 25 of 61) sorted by null

1 2 3

  /external/chromium_org/chrome/test/webdriver/
webdriver_session_manager.cc 11 void SessionManager::Add(Session* session) {
16 bool SessionManager::Has(const std::string& id) const {
21 bool SessionManager::Remove(const std::string& id) {
31 Session* SessionManager::GetSession(const std::string& id) const {
40 void SessionManager::set_port(const std::string& port) {
44 void SessionManager::set_url_base(const std::string& url_base) {
48 std::string SessionManager::url_base() const {
52 SessionManager::SessionManager() {}
54 SessionManager::~SessionManager() {
    [all...]
webdriver_session_manager.h 24 class SessionManager {
27 static SessionManager* GetInstance();
41 SessionManager();
42 ~SessionManager();
43 friend struct DefaultSingletonTraits<SessionManager>;
50 DISALLOW_COPY_AND_ASSIGN(SessionManager);
  /external/chromium_org/remoting/host/
session_manager_factory.h 20 class SessionManager;
23 scoped_ptr<protocol::SessionManager> CreateHostSessionManager(
session_manager_factory.cc 15 scoped_ptr<protocol::SessionManager> CreateHostSessionManager(
31 return session_manager.PassAs<protocol::SessionManager>();
chromoting_host.h 66 public protocol::SessionManager::Listener,
74 scoped_ptr<protocol::SessionManager> session_manager,
130 // SessionManager::Listener implementation.
134 protocol::SessionManager::IncomingSessionResponse* response) OVERRIDE;
168 scoped_ptr<protocol::SessionManager> session_manager_;
chromoting_host.cc 63 scoped_ptr<protocol::SessionManager> session_manager,
120 // Start the SessionManager, supplying this ChromotingHost as the listener.
255 protocol::SessionManager::IncomingSessionResponse* response) {
259 *response = protocol::SessionManager::DECLINE;
264 *response = protocol::SessionManager::OVERLOAD;
278 *response = protocol::SessionManager::INCOMPATIBLE;
284 *response = protocol::SessionManager::ACCEPT;
chromoting_host_unittest.cc 90 scoped_ptr<protocol::SessionManager>(session_manager_),
549 protocol::SessionManager::IncomingSessionResponse response =
550 protocol::SessionManager::ACCEPT;
552 EXPECT_EQ(protocol::SessionManager::DECLINE, response);
566 protocol::SessionManager::IncomingSessionResponse response =
567 protocol::SessionManager::ACCEPT;
569 EXPECT_EQ(protocol::SessionManager::INCOMPATIBLE, response);
587 protocol::SessionManager::IncomingSessionResponse response =
588 protocol::SessionManager::DECLINE;
590 EXPECT_EQ(protocol::SessionManager::ACCEPT, response)
    [all...]
  /external/chromium_org/remoting/protocol/
session_manager.h 5 // The purpose of SessionManager is to facilitate creation of chromotocol
22 // Implementations of the Session and SessionManager interfaces
31 // The SessionManager must not be closed or destroyed before all sessions
32 // created by that SessionManager are destroyed. Caller owns Sessions
33 // created by a SessionManager (except rejected
34 // sessions). The SignalStrategy must outlive the SessionManager.
77 class SessionManager : public base::NonThreadSafe {
79 SessionManager() {}
80 virtual ~SessionManager() {}
147 // once per SessionManager because it may not be safe to delet
    [all...]
jingle_session_manager.h 42 // the protocol::SessionManager interface for accepting incoming and
44 class JingleSessionManager : public SessionManager,
58 // SessionManager interface.
60 SessionManager::Listener* listener) OVERRIDE;
98 SessionManager::Listener* listener_;
connection_to_host.h 50 public SessionManager::Listener,
112 // SessionManager::Listener interface.
116 SessionManager::IncomingSessionResponse* response) OVERRIDE;
156 scoped_ptr<SessionManager> session_manager_;
jingle_session_manager.cc 41 SessionManager::Listener* listener) {
149 IncomingSessionResponse response = SessionManager::DECLINE;
152 if (response == SessionManager::ACCEPT) {
  /external/chromium/third_party/libjingle/source/talk/p2p/client/
sessionmanagertask.h 31 #include "talk/p2p/base/sessionmanager.h"
39 // SessionManager. The sending part is handed over to SessionSendTask.
43 SessionManagerTask(TaskParent *parent, SessionManager *session_manager)
56 session_manager_, &SessionManager::OnSignalingReady);
79 SessionManager* session_manager_;
81 void OnOutgoingMessage(SessionManager* manager,
sessionsendtask.h 36 #include "talk/p2p/base/sessionmanager.h"
42 // within 5 seconds, it will signal failure on a SessionManager. If an error
48 SessionSendTask(TaskParent *parent, SessionManager *session_manager)
130 SessionManager *session_manager_;
  /external/chromium_org/third_party/libjingle/source/talk/p2p/client/
sessionmanagertask.h 31 #include "talk/p2p/base/sessionmanager.h"
39 // SessionManager. The sending part is handed over to SessionSendTask.
44 SessionManager* session_manager)
57 session_manager_, &SessionManager::OnSignalingReady);
80 void OnOutgoingMessage(SessionManager* manager,
88 SessionManager* session_manager_;
sessionsendtask.h 36 #include "talk/p2p/base/sessionmanager.h"
42 // within 5 seconds, it will signal failure on a SessionManager. If an error
49 SessionManager* session_manager)
86 // send the message, but avoid calling back into the SessionManager.
139 SessionManager *session_manager_;
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
sessionmanager.cc 28 #include "talk/p2p/base/sessionmanager.h"
43 SessionManager::SessionManager(PortAllocator *allocator,
55 SessionManager::~SessionManager() {
63 void SessionManager::AddClient(const std::string& content_type,
69 void SessionManager::RemoveClient(const std::string& content_type) {
75 SessionClient* SessionManager::GetClient(const std::string& content_type) {
80 Session* SessionManager::CreateSession(const std::string& local_name,
86 Session* SessionManager::CreateSession(const std::string& id
    [all...]
sessionmanager.h 52 // SessionManager manages session instances.
53 class SessionManager : public sigslot::has_slots<> {
55 SessionManager(PortAllocator *allocator,
57 virtual ~SessionManager();
133 sigslot::signal2<SessionManager*,
147 // Signaled when this SessionManager is deleted.
  /external/chromium/third_party/libjingle/source/talk/p2p/base/
sessionmanager.cc 28 #include "talk/p2p/base/sessionmanager.h"
41 SessionManager::SessionManager(PortAllocator *allocator,
53 SessionManager::~SessionManager() {
60 void SessionManager::AddClient(const std::string& content_type,
66 void SessionManager::RemoveClient(const std::string& content_type) {
72 SessionClient* SessionManager::GetClient(const std::string& content_type) {
77 Session* SessionManager::CreateSession(const std::string& local_name,
84 Session* SessionManager::CreateSession
    [all...]
sessionmanager.h 51 // SessionManager manages session instances
53 class SessionManager : public sigslot::has_slots<> {
55 SessionManager(PortAllocator *allocator,
57 virtual ~SessionManager();
113 sigslot::signal2<SessionManager*,
  /external/chromium/third_party/libjingle/source/talk/session/tunnel/
tunnelsessionclient.h 39 #include "talk/p2p/base/sessionmanager.h"
59 TunnelSessionClientBase(const buzz::Jid& jid, SessionManager* manager,
64 SessionManager* session_manager() const { return session_manager_; }
101 SessionManager* session_manager_;
110 TunnelSessionClient(const buzz::Jid& jid, SessionManager* manager);
111 TunnelSessionClient(const buzz::Jid& jid, SessionManager* manager,
  /external/chromium_org/third_party/libjingle/source/talk/session/tunnel/
tunnelsessionclient.h 39 #include "talk/p2p/base/sessionmanager.h"
59 TunnelSessionClientBase(const buzz::Jid& jid, SessionManager* manager,
64 SessionManager* session_manager() const { return session_manager_; }
101 SessionManager* session_manager_;
110 TunnelSessionClient(const buzz::Jid& jid, SessionManager* manager);
111 TunnelSessionClient(const buzz::Jid& jid, SessionManager* manager,
  /external/chromium_org/chrome/test/webdriver/commands/
webdriver_command.cc 40 session_ = SessionManager::GetInstance()->GetSession(session_id_);
66 if (!SessionManager::GetInstance()->Has(session_id_))
create_session.cc 49 stream << SessionManager::GetInstance()->url_base() << "/session/"
  /external/chromium_org/third_party/libjingle/source/talk/session/media/
mediasessionclient.h 43 #include "talk/p2p/base/sessionmanager.h"
55 MediaSessionClient(const buzz::Jid& jid, SessionManager *manager);
59 MediaSessionClient(const buzz::Jid& jid, SessionManager *manager,
66 SessionManager* session_manager() const { return session_manager_; }
72 // The settings below combine with the settings on SessionManager to choose
159 SessionManager* session_manager_;
  /development/samples/Support7Demos/src/com/example/android/supportv7/media/
SampleMediaRouteControllerDialog.java 54 private final SessionManager mSessionManager;
64 SessionManager manager, Player player) {

Completed in 347 milliseconds

1 2 3