| Index: third_party/WebKit/Source/bindings/tests/results/core/TestPermissiveDictionary.cpp
|
| diff --git a/third_party/WebKit/Source/bindings/tests/results/core/TestPermissiveDictionary.cpp b/third_party/WebKit/Source/bindings/tests/results/core/TestPermissiveDictionary.cpp
|
| index 3801ef2193e6d466185ed4873dd5af2e0cd8fa82..3dc392a321d6c5005bc0186b601f219ce8a1bc9c 100644
|
| --- a/third_party/WebKit/Source/bindings/tests/results/core/TestPermissiveDictionary.cpp
|
| +++ b/third_party/WebKit/Source/bindings/tests/results/core/TestPermissiveDictionary.cpp
|
| @@ -15,6 +15,18 @@ TestPermissiveDictionary::TestPermissiveDictionary() {
|
|
|
| TestPermissiveDictionary::~TestPermissiveDictionary() {}
|
|
|
| +bool TestPermissiveDictionary::hasBooleanMember() const {
|
| + return m_hasBooleanMember;
|
| +}
|
| +bool TestPermissiveDictionary::booleanMember() const {
|
| + DCHECK(m_hasBooleanMember);
|
| + return m_booleanMember;
|
| +}
|
| +void TestPermissiveDictionary::setBooleanMember(bool value) {
|
| + m_booleanMember = value;
|
| + m_hasBooleanMember = true;
|
| +}
|
| +
|
| DEFINE_TRACE(TestPermissiveDictionary) {
|
| IDLDictionaryBase::trace(visitor);
|
| }
|
|
|