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

Unified Diff: Source/bindings/tests/idls/TestCustomAccessors.idl

Issue 15943008: [binding] Replace [CustomIndexedGetter] attributes with [Custom] getter (Closed) Base URL: https://chromium.googlesource.com/chromium/blink@master
Patch Set: update tests Created 7 years, 7 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/scripts/IDLAttributes.txt ('k') | Source/bindings/tests/idls/TestInterface.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/tests/idls/TestCustomAccessors.idl
diff --git a/Source/bindings/tests/idls/TestCustomAccessors.idl b/Source/bindings/tests/idls/TestCustomAccessors.idl
index 964b60a0464f04c7b3515d09fad9f63fe98e5c7f..0c6be93d261126ed7a7ff37fceb9abd914222298 100644
--- a/Source/bindings/tests/idls/TestCustomAccessors.idl
+++ b/Source/bindings/tests/idls/TestCustomAccessors.idl
@@ -27,13 +27,14 @@
*/
[
- CustomIndexedGetter,
- CustomIndexedSetter,
- CustomNamedGetter,
- CustomNamedSetter,
CustomEnumerateProperty,
- CustomDeleteProperty
] interface TestCustomAccessors {
void anotherFunction(DOMString str);
+ [Custom] getter boolean (unsigned long index);
+ [Custom] setter boolean (unsigned long index, Node value);
+ [Custom] deleter boolean (unsigned long index);
+ [Custom] getter Node (DOMString name);
+ [Custom] setter Node (DOMString name, Node value);
+ [Custom] deleter boolean (DOMString name);
};
« no previous file with comments | « Source/bindings/scripts/IDLAttributes.txt ('k') | Source/bindings/tests/idls/TestInterface.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698