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: public/platform/WebRTCPeerConnectionHandler.h

Issue 16025003: Adds DataChannelInit param to createDataChannel (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 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 (C) 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2012 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 13 matching lines...) Expand all
24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */ 29 */
30 30
31 #ifndef WebRTCPeerConnectionHandler_h 31 #ifndef WebRTCPeerConnectionHandler_h
32 #define WebRTCPeerConnectionHandler_h 32 #define WebRTCPeerConnectionHandler_h
33 33
34 #include "WebCommon.h"
35 #include "WebString.h"
36
34 namespace WebKit { 37 namespace WebKit {
35 class WebMediaConstraints; 38 class WebMediaConstraints;
36 class WebMediaStream; 39 class WebMediaStream;
37 class WebMediaStreamTrack; 40 class WebMediaStreamTrack;
38 class WebRTCConfiguration; 41 class WebRTCConfiguration;
39 class WebRTCDTMFSenderHandler; 42 class WebRTCDTMFSenderHandler;
40 class WebRTCDataChannelHandler; 43 class WebRTCDataChannelHandler;
41 class WebRTCICECandidate; 44 class WebRTCICECandidate;
42 class WebRTCPeerConnectionHandlerClient; 45 class WebRTCPeerConnectionHandlerClient;
43 class WebRTCSessionDescription; 46 class WebRTCSessionDescription;
44 class WebRTCSessionDescriptionRequest; 47 class WebRTCSessionDescriptionRequest;
45 class WebRTCStatsRequest; 48 class WebRTCStatsRequest;
46 class WebRTCVoidRequest; 49 class WebRTCVoidRequest;
47 class WebString; 50
51 struct WebRTCDataChannelInit {
52 unsigned short id;
53 bool ordered;
54 bool negotiated;
55 int maxRetransmitTime;
56 int maxRetransmits;
57 WebString protocol;
58 };
48 59
49 class WebRTCPeerConnectionHandler { 60 class WebRTCPeerConnectionHandler {
50 public: 61 public:
51 virtual ~WebRTCPeerConnectionHandler() { } 62 virtual ~WebRTCPeerConnectionHandler() { }
52 63
53 virtual bool initialize(const WebRTCConfiguration&, const WebMediaConstraint s&) = 0; 64 virtual bool initialize(const WebRTCConfiguration&, const WebMediaConstraint s&) = 0;
54 65
55 virtual void createOffer(const WebRTCSessionDescriptionRequest&, const WebMe diaConstraints&) = 0; 66 virtual void createOffer(const WebRTCSessionDescriptionRequest&, const WebMe diaConstraints&) = 0;
56 virtual void createAnswer(const WebRTCSessionDescriptionRequest&, const WebM ediaConstraints&) = 0; 67 virtual void createAnswer(const WebRTCSessionDescriptionRequest&, const WebM ediaConstraints&) = 0;
57 virtual void setLocalDescription(const WebRTCVoidRequest&, const WebRTCSessi onDescription&) = 0; 68 virtual void setLocalDescription(const WebRTCVoidRequest&, const WebRTCSessi onDescription&) = 0;
58 virtual void setRemoteDescription(const WebRTCVoidRequest&, const WebRTCSess ionDescription&) = 0; 69 virtual void setRemoteDescription(const WebRTCVoidRequest&, const WebRTCSess ionDescription&) = 0;
59 virtual WebRTCSessionDescription localDescription() = 0; 70 virtual WebRTCSessionDescription localDescription() = 0;
60 virtual WebRTCSessionDescription remoteDescription() = 0; 71 virtual WebRTCSessionDescription remoteDescription() = 0;
61 virtual bool updateICE(const WebRTCConfiguration&, const WebMediaConstraints &) = 0; 72 virtual bool updateICE(const WebRTCConfiguration&, const WebMediaConstraints &) = 0;
62 virtual bool addICECandidate(const WebRTCICECandidate&) = 0; 73 virtual bool addICECandidate(const WebRTCICECandidate&) = 0;
63 virtual bool addStream(const WebMediaStream&, const WebMediaConstraints&) = 0; 74 virtual bool addStream(const WebMediaStream&, const WebMediaConstraints&) = 0;
64 virtual void removeStream(const WebMediaStream&) = 0; 75 virtual void removeStream(const WebMediaStream&) = 0;
65 virtual void getStats(const WebRTCStatsRequest&) = 0; 76 virtual void getStats(const WebRTCStatsRequest&) = 0;
66 virtual WebRTCDataChannelHandler* createDataChannel(const WebString& label, bool reliable) = 0; 77 virtual WebRTCDataChannelHandler* createDataChannel(const WebString& label, bool reliable) = 0;
78 virtual WebRTCDataChannelHandler* createDataChannel(const WebString& label, const WebRTCDataChannelInit& init)
79 {
80 WEBKIT_ASSERT_NOT_REACHED();
81 return 0;
82 }
67 virtual WebRTCDTMFSenderHandler* createDTMFSender(const WebMediaStreamTrack& ) = 0; 83 virtual WebRTCDTMFSenderHandler* createDTMFSender(const WebMediaStreamTrack& ) = 0;
68 virtual void stop() = 0; 84 virtual void stop() = 0;
69 }; 85 };
70 86
71 } // namespace WebKit 87 } // namespace WebKit
72 88
73 #endif // WebRTCPeerConnectionHandler_h 89 #endif // WebRTCPeerConnectionHandler_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