| OLD | NEW |
| 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 Loading... |
| 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 | |
| 37 namespace WebKit { | 34 namespace WebKit { |
| 38 class WebMediaConstraints; | 35 class WebMediaConstraints; |
| 39 class WebMediaStream; | 36 class WebMediaStream; |
| 40 class WebMediaStreamTrack; | 37 class WebMediaStreamTrack; |
| 41 class WebRTCConfiguration; | 38 class WebRTCConfiguration; |
| 42 class WebRTCDTMFSenderHandler; | 39 class WebRTCDTMFSenderHandler; |
| 43 class WebRTCDataChannelHandler; | 40 class WebRTCDataChannelHandler; |
| 44 class WebRTCICECandidate; | 41 class WebRTCICECandidate; |
| 45 class WebRTCPeerConnectionHandlerClient; | 42 class WebRTCPeerConnectionHandlerClient; |
| 46 class WebRTCSessionDescription; | 43 class WebRTCSessionDescription; |
| 47 class WebRTCSessionDescriptionRequest; | 44 class WebRTCSessionDescriptionRequest; |
| 48 class WebRTCStatsRequest; | 45 class WebRTCStatsRequest; |
| 49 class WebRTCVoidRequest; | 46 class WebRTCVoidRequest; |
| 50 | 47 class WebString; |
| 51 struct WebRTCDataChannelInit { | 48 struct WebRTCDataChannelInit; |
| 52 unsigned short id; | |
| 53 bool ordered; | |
| 54 bool negotiated; | |
| 55 int maxRetransmitTime; | |
| 56 int maxRetransmits; | |
| 57 WebString protocol; | |
| 58 }; | |
| 59 | 49 |
| 60 class WebRTCPeerConnectionHandler { | 50 class WebRTCPeerConnectionHandler { |
| 61 public: | 51 public: |
| 62 virtual ~WebRTCPeerConnectionHandler() { } | 52 virtual ~WebRTCPeerConnectionHandler() { } |
| 63 | 53 |
| 64 virtual bool initialize(const WebRTCConfiguration&, const WebMediaConstraint
s&) = 0; | 54 virtual bool initialize(const WebRTCConfiguration&, const WebMediaConstraint
s&) = 0; |
| 65 | 55 |
| 66 virtual void createOffer(const WebRTCSessionDescriptionRequest&, const WebMe
diaConstraints&) = 0; | 56 virtual void createOffer(const WebRTCSessionDescriptionRequest&, const WebMe
diaConstraints&) = 0; |
| 67 virtual void createAnswer(const WebRTCSessionDescriptionRequest&, const WebM
ediaConstraints&) = 0; | 57 virtual void createAnswer(const WebRTCSessionDescriptionRequest&, const WebM
ediaConstraints&) = 0; |
| 68 virtual void setLocalDescription(const WebRTCVoidRequest&, const WebRTCSessi
onDescription&) = 0; | 58 virtual void setLocalDescription(const WebRTCVoidRequest&, const WebRTCSessi
onDescription&) = 0; |
| 69 virtual void setRemoteDescription(const WebRTCVoidRequest&, const WebRTCSess
ionDescription&) = 0; | 59 virtual void setRemoteDescription(const WebRTCVoidRequest&, const WebRTCSess
ionDescription&) = 0; |
| 70 virtual WebRTCSessionDescription localDescription() = 0; | 60 virtual WebRTCSessionDescription localDescription() = 0; |
| 71 virtual WebRTCSessionDescription remoteDescription() = 0; | 61 virtual WebRTCSessionDescription remoteDescription() = 0; |
| 72 virtual bool updateICE(const WebRTCConfiguration&, const WebMediaConstraints
&) = 0; | 62 virtual bool updateICE(const WebRTCConfiguration&, const WebMediaConstraints
&) = 0; |
| 73 virtual bool addICECandidate(const WebRTCICECandidate&) = 0; | 63 virtual bool addICECandidate(const WebRTCICECandidate&) = 0; |
| 74 virtual bool addStream(const WebMediaStream&, const WebMediaConstraints&) =
0; | 64 virtual bool addStream(const WebMediaStream&, const WebMediaConstraints&) =
0; |
| 75 virtual void removeStream(const WebMediaStream&) = 0; | 65 virtual void removeStream(const WebMediaStream&) = 0; |
| 76 virtual void getStats(const WebRTCStatsRequest&) = 0; | 66 virtual void getStats(const WebRTCStatsRequest&) = 0; |
| 77 virtual WebRTCDataChannelHandler* createDataChannel(const WebString& label,
bool reliable) = 0; | 67 virtual WebRTCDataChannelHandler* createDataChannel(const WebString& label,
const WebRTCDataChannelInit&) = 0; |
| 78 virtual WebRTCDataChannelHandler* createDataChannel(const WebString& label,
const WebRTCDataChannelInit& init) | |
| 79 { | |
| 80 WEBKIT_ASSERT_NOT_REACHED(); | |
| 81 return 0; | |
| 82 } | |
| 83 virtual WebRTCDTMFSenderHandler* createDTMFSender(const WebMediaStreamTrack&
) = 0; | 68 virtual WebRTCDTMFSenderHandler* createDTMFSender(const WebMediaStreamTrack&
) = 0; |
| 84 virtual void stop() = 0; | 69 virtual void stop() = 0; |
| 85 }; | 70 }; |
| 86 | 71 |
| 87 } // namespace WebKit | 72 } // namespace WebKit |
| 88 | 73 |
| 89 #endif // WebRTCPeerConnectionHandler_h | 74 #endif // WebRTCPeerConnectionHandler_h |
| OLD | NEW |