OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2011 The WebRTC project authors. All Rights Reserved. | 2 * Copyright 2011 The WebRTC project authors. All Rights Reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 */ | 9 */ |
10 | 10 |
11 // This file includes proxy classes for tracks. The purpose is | 11 // This file includes proxy classes for tracks. The purpose is |
12 // to make sure tracks are only accessed from the signaling thread. | 12 // to make sure tracks are only accessed from the signaling thread. |
13 | 13 |
14 #ifndef WEBRTC_API_MEDIASTREAMTRACKPROXY_H_ | 14 #ifndef WEBRTC_API_MEDIASTREAMTRACKPROXY_H_ |
15 #define WEBRTC_API_MEDIASTREAMTRACKPROXY_H_ | 15 #define WEBRTC_API_MEDIASTREAMTRACKPROXY_H_ |
16 | 16 |
17 #include <string> | 17 #include <string> |
18 | 18 |
19 #include "webrtc/api/mediastreaminterface.h" | 19 #include "webrtc/api/mediastreaminterface.h" |
20 #include "webrtc/api/proxy.h" | 20 #include "webrtc/api/proxy.h" |
21 | 21 |
22 namespace webrtc { | 22 namespace webrtc { |
23 | 23 |
| 24 // TODO(deadbeef): Move this to .cc file and out of api/. What threads methods |
| 25 // are called on is an implementation detail. |
| 26 |
24 BEGIN_SIGNALING_PROXY_MAP(AudioTrack) | 27 BEGIN_SIGNALING_PROXY_MAP(AudioTrack) |
25 PROXY_SIGNALING_THREAD_DESTRUCTOR() | 28 PROXY_SIGNALING_THREAD_DESTRUCTOR() |
26 PROXY_CONSTMETHOD0(std::string, kind) | 29 PROXY_CONSTMETHOD0(std::string, kind) |
27 PROXY_CONSTMETHOD0(std::string, id) | 30 PROXY_CONSTMETHOD0(std::string, id) |
28 PROXY_CONSTMETHOD0(TrackState, state) | 31 PROXY_CONSTMETHOD0(TrackState, state) |
29 PROXY_CONSTMETHOD0(bool, enabled) | 32 PROXY_CONSTMETHOD0(bool, enabled) |
30 PROXY_CONSTMETHOD0(AudioSourceInterface*, GetSource) | 33 PROXY_CONSTMETHOD0(AudioSourceInterface*, GetSource) |
31 PROXY_METHOD1(void, AddSink, AudioTrackSinkInterface*) | 34 PROXY_METHOD1(void, AddSink, AudioTrackSinkInterface*) |
32 PROXY_METHOD1(void, RemoveSink, AudioTrackSinkInterface*) | 35 PROXY_METHOD1(void, RemoveSink, AudioTrackSinkInterface*) |
33 PROXY_METHOD1(bool, GetSignalLevel, int*) | 36 PROXY_METHOD1(bool, GetSignalLevel, int*) |
(...skipping 19 matching lines...) Expand all Loading... |
53 PROXY_WORKER_METHOD1(void, RemoveSink, rtc::VideoSinkInterface<VideoFrame>*) | 56 PROXY_WORKER_METHOD1(void, RemoveSink, rtc::VideoSinkInterface<VideoFrame>*) |
54 PROXY_CONSTMETHOD0(VideoTrackSourceInterface*, GetSource) | 57 PROXY_CONSTMETHOD0(VideoTrackSourceInterface*, GetSource) |
55 | 58 |
56 PROXY_METHOD1(void, RegisterObserver, ObserverInterface*) | 59 PROXY_METHOD1(void, RegisterObserver, ObserverInterface*) |
57 PROXY_METHOD1(void, UnregisterObserver, ObserverInterface*) | 60 PROXY_METHOD1(void, UnregisterObserver, ObserverInterface*) |
58 END_PROXY_MAP() | 61 END_PROXY_MAP() |
59 | 62 |
60 } // namespace webrtc | 63 } // namespace webrtc |
61 | 64 |
62 #endif // WEBRTC_API_MEDIASTREAMTRACKPROXY_H_ | 65 #endif // WEBRTC_API_MEDIASTREAMTRACKPROXY_H_ |
OLD | NEW |