OLD | NEW |
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 10 matching lines...) Expand all Loading... |
21 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; | 21 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; |
22 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, | 22 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, |
23 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR | 23 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR |
24 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF | 24 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF |
25 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 25 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 */ | 26 */ |
27 | 27 |
28 // This file contains interfaces for DataChannels | 28 // This file contains interfaces for DataChannels |
29 // http://dev.w3.org/2011/webrtc/editor/webrtc.html#rtcdatachannel | 29 // http://dev.w3.org/2011/webrtc/editor/webrtc.html#rtcdatachannel |
30 | 30 |
31 #ifndef TALK_APP_WEBRTC_DATACHANNELINTERFACE_H_ | 31 #ifndef WEBRTC_API_DATACHANNELINTERFACE_H_ |
32 #define TALK_APP_WEBRTC_DATACHANNELINTERFACE_H_ | 32 #define WEBRTC_API_DATACHANNELINTERFACE_H_ |
33 | 33 |
34 #include <string> | 34 #include <string> |
35 | 35 |
36 #include "webrtc/base/basictypes.h" | 36 #include "webrtc/base/basictypes.h" |
37 #include "webrtc/base/buffer.h" | 37 #include "webrtc/base/buffer.h" |
38 #include "webrtc/base/checks.h" | 38 #include "webrtc/base/checks.h" |
39 #include "webrtc/base/refcount.h" | 39 #include "webrtc/base/refcount.h" |
40 | 40 |
41 | 41 |
42 namespace webrtc { | 42 namespace webrtc { |
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
149 virtual void Close() = 0; | 149 virtual void Close() = 0; |
150 // Sends |data| to the remote peer. | 150 // Sends |data| to the remote peer. |
151 virtual bool Send(const DataBuffer& buffer) = 0; | 151 virtual bool Send(const DataBuffer& buffer) = 0; |
152 | 152 |
153 protected: | 153 protected: |
154 virtual ~DataChannelInterface() {} | 154 virtual ~DataChannelInterface() {} |
155 }; | 155 }; |
156 | 156 |
157 } // namespace webrtc | 157 } // namespace webrtc |
158 | 158 |
159 #endif // TALK_APP_WEBRTC_DATACHANNELINTERFACE_H_ | 159 #endif // WEBRTC_API_DATACHANNELINTERFACE_H_ |
OLD | NEW |