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

Unified Diff: third_party/WebKit/Source/bindings/tests/results/core/TestDictionary.h

Issue 2749253002: bindings: Expand typedefs before generating union files. (Closed)
Patch Set: Created 3 years, 9 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
Index: third_party/WebKit/Source/bindings/tests/results/core/TestDictionary.h
diff --git a/third_party/WebKit/Source/bindings/tests/results/core/TestDictionary.h b/third_party/WebKit/Source/bindings/tests/results/core/TestDictionary.h
index 2f9252944e6446535f7b2407b8a07059bcf278d2..e88e9777a3936089f6ca2cc3c85c98984eecd363 100644
--- a/third_party/WebKit/Source/bindings/tests/results/core/TestDictionary.h
+++ b/third_party/WebKit/Source/bindings/tests/results/core/TestDictionary.h
@@ -14,6 +14,7 @@
#include "bindings/core/v8/Dictionary.h"
#include "bindings/core/v8/DoubleOrString.h"
+#include "bindings/core/v8/FloatOrBoolean.h"
#include "bindings/core/v8/IDLDictionaryBase.h"
#include "bindings/core/v8/ScriptValue.h"
#include "bindings/core/v8/TestInterface2OrUint8Array.h"
@@ -183,6 +184,10 @@ class CORE_EXPORT TestDictionary : public IDLDictionaryBase {
DOMUint8Array* uint8ArrayMember() const;
void setUint8ArrayMember(DOMUint8Array*);
+ bool hasUnionWithTypedefs() const;
+ const FloatOrBoolean& unionWithTypedefs() const;
+ void setUnionWithTypedefs(const FloatOrBoolean&);
+
bool hasUnrestrictedDoubleMember() const;
double unrestrictedDoubleMember() const;
void setUnrestrictedDoubleMember(double);
@@ -241,6 +246,7 @@ class CORE_EXPORT TestDictionary : public IDLDictionaryBase {
bool m_hasTestObjectSequenceMember = false;
HeapVector<Member<TestObject>> m_testObjectSequenceMember;
Member<DOMUint8Array> m_uint8ArrayMember;
+ FloatOrBoolean m_unionWithTypedefs;
bool m_hasUnrestrictedDoubleMember = false;
double m_unrestrictedDoubleMember;

Powered by Google App Engine
This is Rietveld 408576698