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

Unified Diff: remoting/protocol/jingle_session.h

Issue 8774031: Multi-step authentication support in JingleSession. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: - Created 9 years, 1 month 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 side-by-side diff with in-line comments
Download patch
Index: remoting/protocol/jingle_session.h
diff --git a/remoting/protocol/jingle_session.h b/remoting/protocol/jingle_session.h
index 75f061fec8d0cf57d3b563b4a5f050f149796525..93c90bbfb20483fddb165c08ee5fc9aee94a32d8 100644
--- a/remoting/protocol/jingle_session.h
+++ b/remoting/protocol/jingle_session.h
@@ -74,12 +74,13 @@ class JingleSession : public protocol::Session,
bool InitializeConfigFromDescription(
const cricket::SessionDescription* description);
- // Used for Session.SignalState sigslot.
+ // Handlers for |cricket_session_| signals.
void OnSessionState(cricket::BaseSession* session,
cricket::BaseSession::State state);
- // Used for Session.SignalError sigslot.
void OnSessionError(cricket::BaseSession* session,
cricket::BaseSession::Error error);
+ void OnSessionInfoMessage(cricket::Session* session,
+ const buzz::XmlElement* message);
void OnInitiate();
void OnAccept();
@@ -89,6 +90,8 @@ class JingleSession : public protocol::Session,
// accepts/rejects connection.
void AcceptConnection();
+ void ProcessAuthenticationStep();
+
void AddChannelConnector(const std::string& name,
JingleChannelConnector* connector);

Powered by Google App Engine
This is Rietveld 408576698