| 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..9ad6e69bef3db463ded14939122aab8146e229c4 100644
|
| --- a/third_party/WebKit/Source/bindings/tests/results/core/TestPermissiveDictionary.cpp
|
| +++ b/third_party/WebKit/Source/bindings/tests/results/core/TestPermissiveDictionary.cpp
|
| @@ -19,4 +19,16 @@ DEFINE_TRACE(TestPermissiveDictionary) {
|
| IDLDictionaryBase::trace(visitor);
|
| }
|
|
|
| +bool TestPermissiveDictionary::hasBooleanMember() const {
|
| + return !m_booleanMember.isNull();
|
| +}
|
| +
|
| +bool TestPermissiveDictionary::booleanMember() const {
|
| + return m_booleanMember.get();
|
| +}
|
| +
|
| +void TestPermissiveDictionary::setBooleanMember(bool value) {
|
| + m_booleanMember = value;
|
| +}
|
| +
|
| } // namespace blink
|
|
|