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

Unified Diff: bindings/scripts/test/TestObj.idl

Issue 13163002: Roll IDLs. (Closed) Base URL: http://dart.googlecode.com/svn/third_party/WebCore/
Patch Set: Created 7 years, 9 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: 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
};

Powered by Google App Engine
This is Rietveld 408576698