Chromium Code Reviews| Index: Source/bindings/tests/results/TestDictionary.cpp |
| diff --git a/Source/bindings/tests/results/TestDictionary.cpp b/Source/bindings/tests/results/TestDictionary.cpp |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..1e38e07d2def8ab07a08d2b04ab7b2009dcf7bac |
| --- /dev/null |
| +++ b/Source/bindings/tests/results/TestDictionary.cpp |
| @@ -0,0 +1,66 @@ |
| +// Copyright 2014 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +// This file has been auto-generated by code_generator_v8.py. DO NOT MODIFY! |
| + |
| +#include "config.h" |
| +#include "TestDictionary.h" |
| + |
| + |
| +namespace blink { |
| + |
| +TestDictionary::TestDictionary() |
| +{ |
| +} |
| + |
| +void TestDictionary::setBooleanMember(bool value) |
| +{ |
| + m_booleanMember = value; |
|
haraken
2014/07/27 07:46:36
If the setter is just setting a value, you can inl
bashi
2014/07/29 03:52:51
Done.
|
| +} |
| + |
| +void TestDictionary::setLongMember(int value) |
| +{ |
| + m_longMember = value; |
| +} |
| + |
| +void TestDictionary::setStringMember(String value) |
| +{ |
| + m_stringMember = value; |
| +} |
| + |
| +void TestDictionary::setTestInterfaceMember(PassRefPtr<TestInterfaceImplementation> value) |
| +{ |
| + m_testInterfaceMember = value; |
| +} |
| + |
| +void TestDictionary::setDoubleOrNullMember(double value) |
| +{ |
| + m_doubleOrNullMember = value; |
| +} |
| + |
| +void TestDictionary::setStringOrNullMember(String value) |
| +{ |
| + m_stringOrNullMember = value; |
| +} |
| + |
| +void TestDictionary::setTestInterfaceOrNullMember(PassRefPtr<TestInterfaceImplementation> value) |
| +{ |
| + m_testInterfaceOrNullMember = value; |
| +} |
| + |
| +void TestDictionary::setStringArrayMember(const Vector<String>& value) |
| +{ |
| + m_stringArrayMember = value; |
| +} |
| + |
| +void TestDictionary::setStringSequenceMember(const Vector<String>& value) |
| +{ |
| + m_stringSequenceMember = value; |
| +} |
| + |
| +void TestDictionary::trace(Visitor* visitor) |
| +{ |
| +} |
| + |
| +} // namespace blink |