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

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

Issue 15943008: [binding] Replace [CustomIndexedGetter] attributes with [Custom] getter (Closed) Base URL: https://chromium.googlesource.com/chromium/blink@master
Patch Set: 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
Index: Source/bindings/tests/idls/TestTypedArray.idl
diff --git a/Source/bindings/tests/idls/TestTypedArray.idl b/Source/bindings/tests/idls/TestTypedArray.idl
index df33995d9db0609208d2e036e94ff5d5c7117687..631409ed09b72188d57bf448d706e2ceab416fa7 100644
--- a/Source/bindings/tests/idls/TestTypedArray.idl
+++ b/Source/bindings/tests/idls/TestTypedArray.idl
@@ -26,10 +26,11 @@
[
ConstructorTemplate=TypedArray,
- CustomIndexedSetter,
CustomToV8,
DoNotCheckConstants
] interface Float64Array : ArrayBufferView {
Int32Array foo(Float32Array array);
void set();
+ [Custom] getter Node (unsigned long index);
+ [Custom] setter Node (unsigned long index, Node value);
};

Powered by Google App Engine
This is Rietveld 408576698