| Index: third_party/WebKit/Source/platform/exported/WebMediaConstraints.cpp
|
| diff --git a/third_party/WebKit/Source/platform/exported/WebMediaConstraints.cpp b/third_party/WebKit/Source/platform/exported/WebMediaConstraints.cpp
|
| index 106c9dc1f3b5c542135dff6dc0e29e457841e821..50d94697d4d193f2977df5b6723706daa68919e3 100644
|
| --- a/third_party/WebKit/Source/platform/exported/WebMediaConstraints.cpp
|
| +++ b/third_party/WebKit/Source/platform/exported/WebMediaConstraints.cpp
|
| @@ -203,6 +203,16 @@ bool StringConstraint::isEmpty() const
|
| return m_exact.isEmpty() && m_ideal.isEmpty();
|
| }
|
|
|
| +const WebVector<WebString>& StringConstraint::exact() const
|
| +{
|
| + return m_exact;
|
| +}
|
| +
|
| +const WebVector<WebString>& StringConstraint::ideal() const
|
| +{
|
| + return m_ideal;
|
| +}
|
| +
|
| bool BooleanConstraint::matches(bool value) const
|
| {
|
| if (m_hasExact && static_cast<bool>(m_exact) != value) {
|
|
|