| Index: bindings/scripts/test/TestObj.idl
|
| ===================================================================
|
| --- bindings/scripts/test/TestObj.idl (revision 20375)
|
| +++ bindings/scripts/test/TestObj.idl (working copy)
|
| @@ -81,6 +81,7 @@
|
| void methodWithSequenceArg(in sequence<ScriptProfile> sequenceArg);
|
| sequence<ScriptProfile> methodReturningSequence(in long longArg);
|
|
|
| + void methodWithEnumArg(in TestEnumType enumArg);
|
| TestObj methodThatRequiresAllArgsAndThrows(in DOMString strArg, in TestObj objArg)
|
| raises(DOMException);
|
|
|
| @@ -295,4 +296,12 @@
|
|
|
| attribute long? nullableStringValue
|
| getter raises(DOMException);
|
| +
|
| +#if defined(TESTING_V8)
|
| + [V8PerWorldBindings] readonly attribute TestObj perWorldReadOnlyAttribute;
|
| + [V8PerWorldBindings] attribute TestObj perWorldAttribute;
|
| + [V8PerWorldBindings] void perWorldMethod();
|
| + [V8PerWorldBindings] void overloadedPerWorldMethod(in long longArg);
|
| + [V8PerWorldBindings] void overloadedPerWorldMethod(in DOMString strArg, in long longArg);
|
| +#endif
|
| };
|
|
|