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

Side by Side Diff: talk/app/webrtc/peerconnectionproxy.h

Issue 1315503003: Set the IceConnectionReceivingTimeout as a RTCConfiguration parameter. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc@master
Patch Set: 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
« no previous file with comments | « talk/app/webrtc/peerconnectioninterface.h ('k') | talk/app/webrtc/webrtcsession.cc » ('j') | 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 * libjingle 2 * libjingle
3 * Copyright 2012 Google Inc. 3 * Copyright 2012 Google Inc.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are met: 6 * modification, are permitted provided that the following conditions are met:
7 * 7 *
8 * 1. Redistributions of source code must retain the above copyright notice, 8 * 1. Redistributions of source code must retain the above copyright notice,
9 * this list of conditions and the following disclaimer. 9 * this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright notice, 10 * 2. Redistributions in binary form must reproduce the above copyright notice,
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 PROXY_METHOD2(void, CreateAnswer, CreateSessionDescriptionObserver*, 55 PROXY_METHOD2(void, CreateAnswer, CreateSessionDescriptionObserver*,
56 const MediaConstraintsInterface*) 56 const MediaConstraintsInterface*)
57 PROXY_METHOD2(void, SetLocalDescription, SetSessionDescriptionObserver*, 57 PROXY_METHOD2(void, SetLocalDescription, SetSessionDescriptionObserver*,
58 SessionDescriptionInterface*) 58 SessionDescriptionInterface*)
59 PROXY_METHOD2(void, SetRemoteDescription, SetSessionDescriptionObserver*, 59 PROXY_METHOD2(void, SetRemoteDescription, SetSessionDescriptionObserver*,
60 SessionDescriptionInterface*) 60 SessionDescriptionInterface*)
61 PROXY_METHOD2(bool, UpdateIce, const IceServers&, 61 PROXY_METHOD2(bool, UpdateIce, const IceServers&,
62 const MediaConstraintsInterface*) 62 const MediaConstraintsInterface*)
63 PROXY_METHOD1(bool, AddIceCandidate, const IceCandidateInterface*) 63 PROXY_METHOD1(bool, AddIceCandidate, const IceCandidateInterface*)
64 PROXY_METHOD1(void, RegisterUMAObserver, UMAObserver*) 64 PROXY_METHOD1(void, RegisterUMAObserver, UMAObserver*)
65 PROXY_METHOD1(void, SetIceConnectionReceivingTimeout, int)
66 PROXY_METHOD0(SignalingState, signaling_state) 65 PROXY_METHOD0(SignalingState, signaling_state)
67 PROXY_METHOD0(IceState, ice_state) 66 PROXY_METHOD0(IceState, ice_state)
68 PROXY_METHOD0(IceConnectionState, ice_connection_state) 67 PROXY_METHOD0(IceConnectionState, ice_connection_state)
69 PROXY_METHOD0(IceGatheringState, ice_gathering_state) 68 PROXY_METHOD0(IceGatheringState, ice_gathering_state)
70 PROXY_METHOD0(void, Close) 69 PROXY_METHOD0(void, Close)
71 END_PROXY() 70 END_PROXY()
72 71
73 } // namespace webrtc 72 } // namespace webrtc
74 73
75 #endif // TALK_APP_WEBRTC_PEERCONNECTIONPROXY_H_ 74 #endif // TALK_APP_WEBRTC_PEERCONNECTIONPROXY_H_
OLDNEW
« no previous file with comments | « talk/app/webrtc/peerconnectioninterface.h ('k') | talk/app/webrtc/webrtcsession.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698