OLD | NEW |
---|---|
1 /* | 1 /* |
2 * libjingle | 2 * libjingle |
3 * Copyright 2014 Google Inc. | 3 * Copyright 2014 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 25 matching lines...) Expand all Loading... | |
36 namespace webrtc { | 36 namespace webrtc { |
37 | 37 |
38 class RTCDataChannelObserver : public DataChannelObserver { | 38 class RTCDataChannelObserver : public DataChannelObserver { |
39 public: | 39 public: |
40 RTCDataChannelObserver(RTCDataChannel* channel) { _channel = channel; } | 40 RTCDataChannelObserver(RTCDataChannel* channel) { _channel = channel; } |
41 | 41 |
42 void OnStateChange() override { | 42 void OnStateChange() override { |
43 [_channel.delegate channelDidChangeState:_channel]; | 43 [_channel.delegate channelDidChangeState:_channel]; |
44 } | 44 } |
45 | 45 |
46 void OnBufferedAmountChange(uint64 previous_amount) override { | |
tkchin_webrtc
2015/06/29 22:18:30
For .mm files naming style isn't exactly fixed, bu
bemasc2
2015/06/29 22:53:17
Done.
| |
47 [_channel.delegate channelDidChangeBufferedAmount:_channel | |
48 previousAmount:previous_amount]; | |
49 } | |
50 | |
46 void OnMessage(const DataBuffer& buffer) override { | 51 void OnMessage(const DataBuffer& buffer) override { |
47 if (!_channel.delegate) { | 52 if (!_channel.delegate) { |
48 return; | 53 return; |
49 } | 54 } |
50 RTCDataBuffer* dataBuffer = | 55 RTCDataBuffer* dataBuffer = |
51 [[RTCDataBuffer alloc] initWithDataBuffer:buffer]; | 56 [[RTCDataBuffer alloc] initWithDataBuffer:buffer]; |
52 [_channel.delegate channel:_channel didReceiveMessageWithBuffer:dataBuffer]; | 57 [_channel.delegate channel:_channel didReceiveMessageWithBuffer:dataBuffer]; |
53 } | 58 } |
54 | 59 |
55 private: | 60 private: |
(...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
272 _observer.reset(new webrtc::RTCDataChannelObserver(self)); | 277 _observer.reset(new webrtc::RTCDataChannelObserver(self)); |
273 } | 278 } |
274 return self; | 279 return self; |
275 } | 280 } |
276 | 281 |
277 - (rtc::scoped_refptr<webrtc::DataChannelInterface>)dataChannel { | 282 - (rtc::scoped_refptr<webrtc::DataChannelInterface>)dataChannel { |
278 return _dataChannel; | 283 return _dataChannel; |
279 } | 284 } |
280 | 285 |
281 @end | 286 @end |
OLD | NEW |