Index: webrtc/api/mediaconstraintsinterface.h |
diff --git a/webrtc/api/mediaconstraintsinterface.h b/webrtc/api/mediaconstraintsinterface.h |
index ed5d84364d9a326512a006da455346e664c08aa4..e8e6f58405292abe2a8faa2deb604a7db611beb8 100644 |
--- a/webrtc/api/mediaconstraintsinterface.h |
+++ b/webrtc/api/mediaconstraintsinterface.h |
@@ -19,6 +19,8 @@ |
#include <string> |
#include <vector> |
+#include "webrtc/base/optional.h" |
+ |
namespace webrtc { |
// MediaConstraintsInterface |
@@ -119,6 +121,18 @@ bool FindConstraint(const MediaConstraintsInterface* constraints, |
const std::string& key, bool* value, |
size_t* mandatory_constraints); |
+bool FindConstraint(const MediaConstraintsInterface* constraints, |
+ const std::string& key, |
+ int* value, |
+ size_t* mandatory_constraints); |
+ |
+rtc::Optional<bool> ConstraintToOptionalBool( |
+ const MediaConstraintsInterface* constraints, |
+ const std::string& key); |
+rtc::Optional<int> ConstraintToOptionalInt( |
+ const MediaConstraintsInterface* constraints, |
+ const std::string& key); |
+ |
} // namespace webrtc |
#endif // WEBRTC_API_MEDIACONSTRAINTSINTERFACE_H_ |