| OLD | NEW |
| 1 /* | 1 /* |
| 2 * libjingle | 2 * libjingle |
| 3 * Copyright 2013 Google Inc. | 3 * Copyright 2013 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 12 matching lines...) Expand all Loading... |
| 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 the interface for MediaConstraints, corresponding to | 28 // This file contains the interface for MediaConstraints, corresponding to |
| 29 // the definition at | 29 // the definition at |
| 30 // http://www.w3.org/TR/mediacapture-streams/#mediastreamconstraints and also | 30 // http://www.w3.org/TR/mediacapture-streams/#mediastreamconstraints and also |
| 31 // used in WebRTC: http://dev.w3.org/2011/webrtc/editor/webrtc.html#constraints. | 31 // used in WebRTC: http://dev.w3.org/2011/webrtc/editor/webrtc.html#constraints. |
| 32 | 32 |
| 33 #ifndef TALK_APP_WEBRTC_MEDIACONSTRAINTSINTERFACE_H_ | 33 #ifndef WEBRTC_API_MEDIACONSTRAINTSINTERFACE_H_ |
| 34 #define TALK_APP_WEBRTC_MEDIACONSTRAINTSINTERFACE_H_ | 34 #define WEBRTC_API_MEDIACONSTRAINTSINTERFACE_H_ |
| 35 | 35 |
| 36 #include <string> | 36 #include <string> |
| 37 #include <vector> | 37 #include <vector> |
| 38 | 38 |
| 39 namespace webrtc { | 39 namespace webrtc { |
| 40 | 40 |
| 41 // MediaConstraintsInterface | 41 // MediaConstraintsInterface |
| 42 // Interface used for passing arguments about media constraints | 42 // Interface used for passing arguments about media constraints |
| 43 // to the MediaStream and PeerConnection implementation. | 43 // to the MediaStream and PeerConnection implementation. |
| 44 class MediaConstraintsInterface { | 44 class MediaConstraintsInterface { |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 131 // Dtor protected as objects shouldn't be deleted via this interface | 131 // Dtor protected as objects shouldn't be deleted via this interface |
| 132 virtual ~MediaConstraintsInterface() {} | 132 virtual ~MediaConstraintsInterface() {} |
| 133 }; | 133 }; |
| 134 | 134 |
| 135 bool FindConstraint(const MediaConstraintsInterface* constraints, | 135 bool FindConstraint(const MediaConstraintsInterface* constraints, |
| 136 const std::string& key, bool* value, | 136 const std::string& key, bool* value, |
| 137 size_t* mandatory_constraints); | 137 size_t* mandatory_constraints); |
| 138 | 138 |
| 139 } // namespace webrtc | 139 } // namespace webrtc |
| 140 | 140 |
| 141 #endif // TALK_APP_WEBRTC_MEDIACONSTRAINTSINTERFACE_H_ | 141 #endif // WEBRTC_API_MEDIACONSTRAINTSINTERFACE_H_ |
| OLD | NEW |