Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(324)

Unified Diff: Source/bindings/tests/results/TestDictionary.cpp

Issue 386963003: [WIP][NotForLand] IDL dictionary support (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: sequence and array support Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/bindings/tests/results/TestDictionary.h ('k') | Source/bindings/tests/results/V8TestDictionary.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..0442dd9d87ce171d2bbf5b9f8ac5a141f2b167ab
--- /dev/null
+++ b/Source/bindings/tests/results/TestDictionary.cpp
@@ -0,0 +1,78 @@
+// 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;
+}
+
+void TestDictionary::setLongMember(int value)
+{
+ m_longMember = value;
+}
+
+void TestDictionary::setStringMember(String value)
+{
+ m_stringMember = value;
+}
+
+void TestDictionary::setNodeMember(PassRefPtrWillBeRawPtr<Node> value)
+{
+ m_nodeMember = value;
+}
+
+void TestDictionary::setTestInterfaceMember(PassRefPtr<TestInterfaceImplementation> value)
+{
+ m_testInterfaceMember = value;
+}
+
+void TestDictionary::setBooleanOrNullMember(bool value)
+{
+ m_booleanOrNullMember = value;
+}
+
+void TestDictionary::setTestInterfaceOrNullMember(PassRefPtr<TestInterfaceImplementation> value)
+{
+ m_testInterfaceOrNullMember = value;
+}
+
+void TestDictionary::setStringOrNullMember(String value)
+{
+ m_stringOrNullMember = value;
+}
+
+void TestDictionary::setFloatSequenceMember(const Vector<float>& value)
+{
+ m_floatSequenceMember = value;
+}
+
+void TestDictionary::setTestInterfaceSequenceSequenceMember(const Vector<RefPtr<TestInterfaceImplementation> >& value)
+{
+ m_testInterfaceSequenceSequenceMember = value;
+}
+
+void TestDictionary::setNodeArrayMember(const WillBeHeapVector<RefPtrWillBeMember<Node> >& value)
+{
+ m_nodeArrayMember = value;
+}
+
+void TestDictionary::trace(Visitor* visitor)
+{
+ visitor->trace(m_nodeMember);
+ visitor->trace(m_nodeArrayMember);
+}
+
+} // namespace blink
« no previous file with comments | « Source/bindings/tests/results/TestDictionary.h ('k') | Source/bindings/tests/results/V8TestDictionary.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698