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

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

Issue 1317353005: Adding PeerConnectionInterface::SetConfiguration method. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Deleting some unused code, and adding TODO for pending deletion 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') | 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 * 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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 PROXY_METHOD2(void, CreateOffer, CreateSessionDescriptionObserver*, 53 PROXY_METHOD2(void, CreateOffer, CreateSessionDescriptionObserver*,
54 const MediaConstraintsInterface*) 54 const MediaConstraintsInterface*)
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,
64 SetConfiguration,
65 const PeerConnectionInterface::RTCConfiguration&);
63 PROXY_METHOD1(bool, AddIceCandidate, const IceCandidateInterface*) 66 PROXY_METHOD1(bool, AddIceCandidate, const IceCandidateInterface*)
64 PROXY_METHOD1(void, RegisterUMAObserver, UMAObserver*) 67 PROXY_METHOD1(void, RegisterUMAObserver, UMAObserver*)
65 PROXY_METHOD0(SignalingState, signaling_state) 68 PROXY_METHOD0(SignalingState, signaling_state)
66 PROXY_METHOD0(IceState, ice_state) 69 PROXY_METHOD0(IceState, ice_state)
67 PROXY_METHOD0(IceConnectionState, ice_connection_state) 70 PROXY_METHOD0(IceConnectionState, ice_connection_state)
68 PROXY_METHOD0(IceGatheringState, ice_gathering_state) 71 PROXY_METHOD0(IceGatheringState, ice_gathering_state)
69 PROXY_METHOD0(void, Close) 72 PROXY_METHOD0(void, Close)
70 END_PROXY() 73 END_PROXY()
71 74
72 } // namespace webrtc 75 } // namespace webrtc
73 76
74 #endif // TALK_APP_WEBRTC_PEERCONNECTIONPROXY_H_ 77 #endif // TALK_APP_WEBRTC_PEERCONNECTIONPROXY_H_
OLDNEW
« no previous file with comments | « talk/app/webrtc/peerconnectioninterface.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698