OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 Google Inc. All rights reserved. |
3 * Copyright (C) 2010 Apple Inc. All rights reserved. | 3 * Copyright (C) 2010 Apple Inc. All rights reserved. |
4 * | 4 * |
5 * Redistribution and use in source and binary formstrArg, with or without | 5 * Redistribution and use in source and binary formstrArg, with or without |
6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
7 * are met: | 7 * are met: |
8 * | 8 * |
9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
(...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
209 [EnabledAtRuntime] attribute long enabledAtRuntimeAttr1; | 209 [EnabledAtRuntime] attribute long enabledAtRuntimeAttr1; |
210 [EnabledAtRuntime=FeatureName] attribute long enabledAtRuntimeAttr2; | 210 [EnabledAtRuntime=FeatureName] attribute long enabledAtRuntimeAttr2; |
211 // 'EnabledPerContext' methods and attributes. | 211 // 'EnabledPerContext' methods and attributes. |
212 [EnabledPerContext] void enabledPerContextMethod1(long longArg); | 212 [EnabledPerContext] void enabledPerContextMethod1(long longArg); |
213 [EnabledPerContext=FeatureName] void enabledPerContextMethod2(long longArg); | 213 [EnabledPerContext=FeatureName] void enabledPerContextMethod2(long longArg); |
214 [EnabledPerContext] attribute long enabledPerContextAttr1; | 214 [EnabledPerContext] attribute long enabledPerContextAttr1; |
215 [EnabledPerContext=FeatureName] attribute long enabledPerContextAttr2; | 215 [EnabledPerContext=FeatureName] attribute long enabledPerContextAttr2; |
216 | 216 |
217 attribute float[] floatArray; | 217 attribute float[] floatArray; |
218 attribute double[] doubleArray; | 218 attribute double[] doubleArray; |
| 219 attribute MessagePort[] messagePortArray; |
219 | 220 |
220 void methodWithUnsignedLongSequence(sequence<unsigned long> unsignedLongSequ
ence); | 221 void methodWithUnsignedLongSequence(sequence<unsigned long> unsignedLongSequ
ence); |
221 [RaisesException] DOMString[] stringArrayFunction(DOMString[] values); | 222 [RaisesException] DOMString[] stringArrayFunction(DOMString[] values); |
222 [RaisesException] DOMStringList domStringListFunction(DOMStringList values); | 223 [RaisesException] DOMStringList domStringListFunction(DOMStringList values); |
223 | 224 |
224 [CheckSecurityForNode] readonly attribute Document contentDocument; | 225 [CheckSecurityForNode] readonly attribute Document contentDocument; |
225 [CheckSecurityForNode, RaisesException] SVGDocument getSVGDocument(); | 226 [CheckSecurityForNode, RaisesException] SVGDocument getSVGDocument(); |
226 | 227 |
227 void convert1([TreatReturnedNullStringAs=Null] TestNode value); | 228 void convert1([TreatReturnedNullStringAs=Null] TestNode value); |
228 void convert2([TreatReturnedNullStringAs=Undefined] TestNode value); | 229 void convert2([TreatReturnedNullStringAs=Undefined] TestNode value); |
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
300 [DeprecateAs=StaticReadonlyAttribute] static readonly attribute long depreca
tedStaticReadOnlyAttr; | 301 [DeprecateAs=StaticReadonlyAttribute] static readonly attribute long depreca
tedStaticReadOnlyAttr; |
301 [DeprecateAs=StaticAttribute] static attribute long deprecatedStaticAttr; | 302 [DeprecateAs=StaticAttribute] static attribute long deprecatedStaticAttr; |
302 [DeprecateAs=ReadonlyAttribute] readonly attribute long deprecatedReadonlyAt
tr; | 303 [DeprecateAs=ReadonlyAttribute] readonly attribute long deprecatedReadonlyAt
tr; |
303 [DeprecateAs=Attribute] attribute long deprecatedAttr; | 304 [DeprecateAs=Attribute] attribute long deprecatedAttr; |
304 | 305 |
305 [DeprecateAs=Method] void deprecatedMethod(); | 306 [DeprecateAs=Method] void deprecatedMethod(); |
306 [DeprecateAs=StaticMethod] static void deprecatedStaticMethod(); | 307 [DeprecateAs=StaticMethod] static void deprecatedStaticMethod(); |
307 | 308 |
308 [DeprecateAs=Constant] const unsigned short DEPRECATED_CONSTANT = 1; | 309 [DeprecateAs=Constant] const unsigned short DEPRECATED_CONSTANT = 1; |
309 }; | 310 }; |
OLD | NEW |