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

Unified Diff: remoting/client/host_connection.cc

Issue 2745006: Implement a chromoting client using X11 (Closed)
Patch Set: removed all.gyp Created 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « remoting/client/decoder_verbatim.cc ('k') | remoting/client/simple_client.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/client/host_connection.cc
diff --git a/remoting/client/host_connection.cc b/remoting/client/host_connection.cc
index f858af634b9f5044b3e1b2b74c9c4fb23ffebbd4..2b47f0d08f7e8c5b1ab8559149f3efb0d39be0f2 100644
--- a/remoting/client/host_connection.cc
+++ b/remoting/client/host_connection.cc
@@ -24,22 +24,28 @@ void HostConnection::Connect(const std::string& username,
}
void HostConnection::Disconnect() {
- if (jingle_channel_.get())
+ // TODO(hclam): It's not thread safe to read the state.
+ if (jingle_channel_.get() &&
+ jingle_channel_->state() != JingleChannel::CLOSED) {
jingle_channel_->Close();
+ }
- if (jingle_client_.get())
+ // TODO(hclam): It's not thread safe to read the state.
+ if (jingle_client_.get() &&
+ jingle_client_->state() != JingleClient::CLOSED) {
jingle_client_->Close();
+ }
}
void HostConnection::OnStateChange(JingleChannel* channel,
JingleChannel::State state) {
DCHECK(handler_);
- if (state == JingleChannel::FAILED)
+ if (state == JingleChannel::OPEN)
+ handler_->OnConnectionOpened(this);
+ else if (state == JingleChannel::FAILED)
handler_->OnConnectionFailed(this);
else if (state == JingleChannel::CLOSED)
handler_->OnConnectionClosed(this);
- else if (state == JingleChannel::OPEN)
- handler_->OnConnectionOpened(this);
}
void HostConnection::OnPacketReceived(JingleChannel* channel,
« no previous file with comments | « remoting/client/decoder_verbatim.cc ('k') | remoting/client/simple_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698