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

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

Issue 11098032: Roll IDL to multivm@937 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 2 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 | « third_party/WebCore/README ('k') | third_party/WebCore/dom/DOMStringList.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebCore/bindings/scripts/test/TestObj.idl
diff --git a/third_party/WebCore/bindings/scripts/test/TestObj.idl b/third_party/WebCore/bindings/scripts/test/TestObj.idl
index f2d1fe810d1baed17456c7b1401a978671bd3fc3..74845a7ede30e41b23bb7f0c2ba4510587568ac8 100644
--- a/third_party/WebCore/bindings/scripts/test/TestObj.idl
+++ b/third_party/WebCore/bindings/scripts/test/TestObj.idl
@@ -51,7 +51,6 @@ module test {
attribute DOMString stringAttr;
attribute [V8MeasureAs=TestFeature] TestObj testObjAttr;
- JS, V8
// WK_ucfirst, WK_lcfirst exceptional cases.
attribute TestObj XMLObjAttr;
attribute boolean create;
@@ -226,10 +225,10 @@ module test {
[CheckSecurityForNode] SVGDocument getSVGDocument()
raises(DOMException);
- void convert1(in [TreatReturnedNullStringAs=Null] a);
- void convert2(in [TreatReturnedNullStringAs=Undefined] b);
- void convert4(in [TreatNullAs=NullString] d);
- void convert5(in [TreatNullAs=NullString, TreatUndefinedAs=NullString] e);
+ void convert1(in [TreatReturnedNullStringAs=Null] a value);
+ void convert2(in [TreatReturnedNullStringAs=Undefined] b value);
+ void convert4(in [TreatNullAs=NullString] d value);
+ void convert5(in [TreatNullAs=NullString, TreatUndefinedAs=NullString] e value);
attribute SVGPoint mutablePoint;
attribute [Immutable] SVGPoint immutablePoint;
@@ -263,5 +262,9 @@ module test {
[Reflect=CONST_IMPL] const unsigned short CONST_JAVASCRIPT = 15;
attribute [Replaceable] long replaceableAttribute;
+
+ void variadicStringMethod(in DOMString head, in DOMString... tail);
+ void variadicDoubleMethod(in double head, in double... tail);
+ void variadicNodeMethod(in Node head, in Node... tail);
};
}
« no previous file with comments | « third_party/WebCore/README ('k') | third_party/WebCore/dom/DOMStringList.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698