| 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 414ff8a73818769f97e8db3247e2a251ebad7608..546cd91f71e4f851f402c76b2be515cf10b89699 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) {
|
|
|