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

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

Issue 1362503003: Use suffixed {uint,int}{8,16,32,64}_t types. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: google::int32 Created 5 years, 3 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 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 437 matching lines...) Expand 10 before | Expand all | Expand 10 after
448 rtc::Thread* const signaling_thread_; 448 rtc::Thread* const signaling_thread_;
449 rtc::Thread* const worker_thread_; 449 rtc::Thread* const worker_thread_;
450 PortAllocator* const port_allocator_; 450 PortAllocator* const port_allocator_;
451 const std::string sid_; 451 const std::string sid_;
452 const std::string content_type_; 452 const std::string content_type_;
453 bool initiator_; 453 bool initiator_;
454 rtc::scoped_refptr<rtc::RTCCertificate> certificate_; 454 rtc::scoped_refptr<rtc::RTCCertificate> certificate_;
455 rtc::SSLProtocolVersion ssl_max_version_; 455 rtc::SSLProtocolVersion ssl_max_version_;
456 rtc::scoped_ptr<const SessionDescription> local_description_; 456 rtc::scoped_ptr<const SessionDescription> local_description_;
457 rtc::scoped_ptr<SessionDescription> remote_description_; 457 rtc::scoped_ptr<SessionDescription> remote_description_;
458 uint64 ice_tiebreaker_; 458 uint64_t ice_tiebreaker_;
459 // This flag will be set to true after the first role switch. This flag 459 // This flag will be set to true after the first role switch. This flag
460 // will enable us to stop any role switch during the call. 460 // will enable us to stop any role switch during the call.
461 bool role_switch_; 461 bool role_switch_;
462 TransportMap transports_; 462 TransportMap transports_;
463 463
464 // Timeout value in milliseconds for which no ICE connection receives 464 // Timeout value in milliseconds for which no ICE connection receives
465 // any packets. 465 // any packets.
466 int ice_receiving_timeout_; 466 int ice_receiving_timeout_;
467 }; 467 };
468 468
469 } // namespace cricket 469 } // namespace cricket
470 470
471 #endif // WEBRTC_P2P_BASE_SESSION_H_ 471 #endif // WEBRTC_P2P_BASE_SESSION_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698