Chromium Code Reviews

Unified Diff: Source/core/testing/TestingDictionary.idl

Issue 429853002: IDL: Add build target for IDL dictionary impl generation in core (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: Source/core/testing/TestingDictionary.idl
diff --git a/Source/core/testing/TestingDictionary.idl b/Source/core/testing/TestingDictionary.idl
new file mode 100644
index 0000000000000000000000000000000000000000..3e8fba274050b7fa48a7bed91ce7d668d228a449
--- /dev/null
+++ b/Source/core/testing/TestingDictionary.idl
@@ -0,0 +1,13 @@
+// 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.
+
+[
+ GarbageCollected
+] dictionary TestingDictionary {
+ long longMember;
+ DOMString stringMember = "defaultStringValue";
+ boolean? booleanOrNullMember = null;
+ double? doubleOrNullMember;
+ sequence<DOMString> stringSequenceMember;
+};

Powered by Google App Engine