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

Side by Side Diff: webrtc/examples/peerconnection/client/peer_connection_client.cc

Issue 2915253002: Delete SignalThread class. (Closed)
Patch Set: Another TODO on moving to QueuedTask. Created 3 years, 5 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
OLDNEW
1 /* 1 /*
2 * Copyright 2012 The WebRTC Project Authors. All rights reserved. 2 * Copyright 2012 The WebRTC Project Authors. All rights reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
11 #include "webrtc/examples/peerconnection/client/peer_connection_client.h" 11 #include "webrtc/examples/peerconnection/client/peer_connection_client.h"
12 12
13 #include "webrtc/examples/peerconnection/client/defaults.h"
14 #include "webrtc/base/checks.h" 13 #include "webrtc/base/checks.h"
15 #include "webrtc/base/logging.h" 14 #include "webrtc/base/logging.h"
16 #include "webrtc/base/nethelpers.h" 15 #include "webrtc/base/nethelpers.h"
17 #include "webrtc/base/stringutils.h" 16 #include "webrtc/base/stringutils.h"
17 #include "webrtc/base/thread.h"
18 #include "webrtc/examples/peerconnection/client/defaults.h"
18 19
19 #ifdef WIN32 20 #ifdef WIN32
20 #include "webrtc/base/win32socketserver.h" 21 #include "webrtc/base/win32socketserver.h"
21 #endif 22 #endif
22 23
23 using rtc::sprintfn; 24 using rtc::sprintfn;
24 25
25 namespace { 26 namespace {
26 27
27 // This is our magical hangup signal. 28 // This is our magical hangup signal.
(...skipping 476 matching lines...) Expand 10 before | Expand all | Expand 10 after
504 Close(); 505 Close();
505 callback_->OnDisconnected(); 506 callback_->OnDisconnected();
506 } 507 }
507 } 508 }
508 } 509 }
509 510
510 void PeerConnectionClient::OnMessage(rtc::Message* msg) { 511 void PeerConnectionClient::OnMessage(rtc::Message* msg) {
511 // ignore msg; there is currently only one supported message ("retry") 512 // ignore msg; there is currently only one supported message ("retry")
512 DoConnect(); 513 DoConnect();
513 } 514 }
OLDNEW
« no previous file with comments | « webrtc/examples/peerconnection/client/peer_connection_client.h ('k') | webrtc/rtc_base/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698