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

Side by Side Diff: webrtc/p2p/base/p2ptransportchannel.h

Issue 2091093002: Fix a breakage in chromoting due to an interface change. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc@master
Patch Set: . Created 4 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 unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2004 The WebRTC Project Authors. All rights reserved. 2 * Copyright 2004 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
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
111 // From TransportChannel: 111 // From TransportChannel:
112 int SendPacket(const char* data, 112 int SendPacket(const char* data,
113 size_t len, 113 size_t len,
114 const rtc::PacketOptions& options, 114 const rtc::PacketOptions& options,
115 int flags) override; 115 int flags) override;
116 int SetOption(rtc::Socket::Option opt, int value) override; 116 int SetOption(rtc::Socket::Option opt, int value) override;
117 bool GetOption(rtc::Socket::Option opt, int* value) override; 117 bool GetOption(rtc::Socket::Option opt, int* value) override;
118 int GetError() override { return error_; } 118 int GetError() override { return error_; }
119 bool GetStats(std::vector<ConnectionInfo>* stats) override; 119 bool GetStats(std::vector<ConnectionInfo>* stats) override;
120 120
121 // TODO(honghaiz): Remove this method once the reference of it in
122 // Chromoting is removed.
123 const Connection* best_connection() const { return selected_connection_; }
124
121 const Connection* selected_connection() const { return selected_connection_; } 125 const Connection* selected_connection() const { return selected_connection_; }
122 void set_incoming_only(bool value) { incoming_only_ = value; } 126 void set_incoming_only(bool value) { incoming_only_ = value; }
123 127
124 // Note: This is only for testing purpose. 128 // Note: This is only for testing purpose.
125 // |ports_| should not be changed from outside. 129 // |ports_| should not be changed from outside.
126 const std::vector<PortInterface*>& ports() { return ports_; } 130 const std::vector<PortInterface*>& ports() { return ports_; }
127 131
128 IceMode remote_ice_mode() const { return remote_ice_mode_; } 132 IceMode remote_ice_mode() const { return remote_ice_mode_; }
129 133
130 // DTLS methods. 134 // DTLS methods.
(...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after
362 TransportChannelState state_ = TransportChannelState::STATE_INIT; 366 TransportChannelState state_ = TransportChannelState::STATE_INIT;
363 IceConfig config_; 367 IceConfig config_;
364 int last_sent_packet_id_ = -1; // -1 indicates no packet was sent before. 368 int last_sent_packet_id_ = -1; // -1 indicates no packet was sent before.
365 369
366 RTC_DISALLOW_COPY_AND_ASSIGN(P2PTransportChannel); 370 RTC_DISALLOW_COPY_AND_ASSIGN(P2PTransportChannel);
367 }; 371 };
368 372
369 } // namespace cricket 373 } // namespace cricket
370 374
371 #endif // WEBRTC_P2P_BASE_P2PTRANSPORTCHANNEL_H_ 375 #endif // WEBRTC_P2P_BASE_P2PTRANSPORTCHANNEL_H_
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698