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

Unified Diff: third_party/WebKit/Source/core/testing/DictionaryTest.idl

Issue 2183623004: Add IDLDictionaryBase (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix multi-level inheritance bug Created 4 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
Index: third_party/WebKit/Source/core/testing/DictionaryTest.idl
diff --git a/third_party/WebKit/Source/core/testing/DictionaryTest.idl b/third_party/WebKit/Source/core/testing/DictionaryTest.idl
index d90206e60b45483e631e066fe785542d25518e51..d244022a95d2d3e2727cbffdff641db0a970aaf4 100644
--- a/third_party/WebKit/Source/core/testing/DictionaryTest.idl
+++ b/third_party/WebKit/Source/core/testing/DictionaryTest.idl
@@ -2,8 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-[
-] interface DictionaryTest {
+interface DictionaryTest {
void set(optional InternalDictionary testingDictionary);
InternalDictionary get();
[CallWith=ScriptState] object getDictionaryMemberProperties();
@@ -11,5 +10,8 @@
void setDerived(InternalDictionaryDerived derived);
InternalDictionaryDerived getDerived();
+ void setDerivedDerived(InternalDictionaryDerivedDerived derived);
+ InternalDictionaryDerivedDerived getDerivedDerived();
+
[CallWith=ExecutionContext, RaisesException] DOMString stringFromIterable(Dictionary iterableDictionary);
};

Powered by Google App Engine
This is Rietveld 408576698