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 3a0b98e7831129ff444a1f28c927db669e04d855..70b8662779a3d6d7d4b9cb9643f5af250a607ac8 100644 |
--- a/third_party/WebKit/Source/bindings/tests/results/core/TestDictionary.cpp |
+++ b/third_party/WebKit/Source/bindings/tests/results/core/TestDictionary.cpp |
@@ -208,6 +208,15 @@ const DoubleOrString& TestDictionary::otherDoubleOrStringMember() const { |
void TestDictionary::setOtherDoubleOrStringMember(const DoubleOrString& value) { |
m_otherDoubleOrStringMember = value; |
} |
+bool TestDictionary::hasPrefixGetMember() const { |
+ return !(m_prefixGetMember.isEmpty() || m_prefixGetMember.isNull() || m_prefixGetMember.isUndefined()); |
+} |
+ScriptValue TestDictionary::getPrefixGetMember() const { |
+ return m_prefixGetMember; |
+} |
+void TestDictionary::setPrefixGetMember(ScriptValue value) { |
+ m_prefixGetMember = value; |
+} |
bool TestDictionary::hasRestrictedDoubleMember() const { |
return m_hasRestrictedDoubleMember; |
} |