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

Unified Diff: remoting/protocol/jingle_session_manager.h

Issue 4446005: Chromoting: Rename ChromotocolConfig -> SessionConfig (Closed) Base URL: http://git.chromium.org/git/chromium.git
Patch Set: Rename candidate_config vars Created 10 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
« no previous file with comments | « remoting/protocol/jingle_session.cc ('k') | remoting/protocol/jingle_session_manager.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/protocol/jingle_session_manager.h
diff --git a/remoting/protocol/jingle_session_manager.h b/remoting/protocol/jingle_session_manager.h
index 72410023f19a8c439d9f8246f7b42a5c030ef18f..f6ad45ab0143ab38a0d574553782dc26ff56f258 100644
--- a/remoting/protocol/jingle_session_manager.h
+++ b/remoting/protocol/jingle_session_manager.h
@@ -29,20 +29,20 @@ class JingleThread;
namespace protocol {
// ContentDescription used for chromoting sessions. It simply wraps
-// CandidateChromotocolConfig. CandidateChromotocolConfig doesn't inherit
+// CandidateSessionConfig. CandidateSessionConfig doesn't inherit
// from ContentDescription to avoid dependency on libjingle in
// Chromotocol Session interface.
class ContentDescription : public cricket::ContentDescription {
public:
- explicit ContentDescription(const CandidateChromotocolConfig* config);
+ explicit ContentDescription(const CandidateSessionConfig* config);
~ContentDescription();
- const CandidateChromotocolConfig* config() const {
+ const CandidateSessionConfig* config() const {
return candidate_config_.get();
}
private:
- scoped_ptr<const CandidateChromotocolConfig> candidate_config_;
+ scoped_ptr<const CandidateSessionConfig> candidate_config_;
};
// This class implements SessionClient for Chromoting sessions. It acts as a
@@ -64,7 +64,7 @@ class JingleSessionManager
// ChromotocolServer interface.
virtual scoped_refptr<protocol::Session> Connect(
const std::string& jid,
- CandidateChromotocolConfig* chromotocol_config,
+ CandidateSessionConfig* candidate_config,
protocol::Session::StateChangeCallback* state_change_callback);
virtual void Close(Task* closed_task);
@@ -93,7 +93,7 @@ class JingleSessionManager
// Creates outgoing session description for an incoming session.
cricket::SessionDescription* CreateSessionDescription(
- const CandidateChromotocolConfig* config);
+ const CandidateSessionConfig* candidate_config);
// cricket::SessionClient interface.
virtual void OnSessionCreate(cricket::Session* cricket_session,
« no previous file with comments | « remoting/protocol/jingle_session.cc ('k') | remoting/protocol/jingle_session_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698