| Index: third_party/WebKit/Source/bindings/tests/results/core/TestDictionary.cpp
|
| diff --git a/third_party/WebKit/Source/bindings/tests/results/core/TestDictionary.cpp b/third_party/WebKit/Source/bindings/tests/results/core/TestDictionary.cpp
|
| index 11f77eac813faab1838dfbd97f227227770abf46..69af3f6415df35514c3c96959da2c12dd52b2d53 100644
|
| --- a/third_party/WebKit/Source/bindings/tests/results/core/TestDictionary.cpp
|
| +++ b/third_party/WebKit/Source/bindings/tests/results/core/TestDictionary.cpp
|
| @@ -39,6 +39,17 @@ TestDictionary::TestDictionary(const TestDictionary&) = default;
|
|
|
| TestDictionary& TestDictionary::operator=(const TestDictionary&) = default;
|
|
|
| +bool TestDictionary::hasAnyInRecordMember() const {
|
| + return m_hasAnyInRecordMember;
|
| +}
|
| +const Vector<std::pair<String, ScriptValue>>& TestDictionary::anyInRecordMember() const {
|
| + DCHECK(m_hasAnyInRecordMember);
|
| + return m_anyInRecordMember;
|
| +}
|
| +void TestDictionary::setAnyInRecordMember(const Vector<std::pair<String, ScriptValue>>& value) {
|
| + m_anyInRecordMember = value;
|
| + m_hasAnyInRecordMember = true;
|
| +}
|
| bool TestDictionary::hasAnyMember() const {
|
| return !(m_anyMember.IsEmpty() || m_anyMember.IsNull() || m_anyMember.IsUndefined());
|
| }
|
|
|