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

Side by Side Diff: Source/bindings/tests/idls/TestObjectPython.idl

Issue 47073007: Bindings: Remove special cases for DOMStringList (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebased Created 7 years, 1 month 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 // Special names (start with acronym) 55 // Special names (start with acronym)
56 attribute long cssAttribute; 56 attribute long cssAttribute;
57 attribute long imeAttribute; 57 attribute long imeAttribute;
58 attribute long svgAttribute; 58 attribute long svgAttribute;
59 attribute long xmlAttribute; 59 attribute long xmlAttribute;
60 // Non-wrapper types 60 // Non-wrapper types
61 attribute NodeFilter nodeFilterAttribute; 61 attribute NodeFilter nodeFilterAttribute;
62 attribute SerializedScriptValue serializedScriptValueAttribute; 62 attribute SerializedScriptValue serializedScriptValueAttribute;
63 attribute any anyAttribute; 63 attribute any anyAttribute;
64 // Special type conversions 64 // Special type conversions
65 attribute DOMStringList domStringListAttribute;
66 attribute Promise promiseAttribute; 65 attribute Promise promiseAttribute;
67 // DOM Node types 66 // DOM Node types
68 attribute Document documentAttribute; 67 attribute Document documentAttribute;
69 attribute DocumentFragment documentFragmentAttribute; 68 attribute DocumentFragment documentFragmentAttribute;
70 attribute DocumentType documentTypeAttribute; 69 attribute DocumentType documentTypeAttribute;
71 attribute Element elementAttribute; 70 attribute Element elementAttribute;
72 attribute Entity entityAttribute; 71 attribute Entity entityAttribute;
73 attribute Node nodeAttribute; 72 attribute Node nodeAttribute;
74 attribute ShadowRoot shadowRootAttribute; 73 attribute ShadowRoot shadowRootAttribute;
75 // Typed arrays 74 // Typed arrays
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after
202 void voidMethodShortArg(short shortArg); 201 void voidMethodShortArg(short shortArg);
203 void voidMethodUnsignedLongArg(unsigned long unsignedLongArg); 202 void voidMethodUnsignedLongArg(unsigned long unsignedLongArg);
204 void voidMethodUnsignedLongLongArg(unsigned long long unsignedLongLongArg); 203 void voidMethodUnsignedLongLongArg(unsigned long long unsignedLongLongArg);
205 void voidMethodUnsignedShortArg(unsigned short unsignedShortArg); 204 void voidMethodUnsignedShortArg(unsigned short unsignedShortArg);
206 // Interface types 205 // Interface types
207 TestInterfaceEmpty testInterfaceEmptyMethod(); 206 TestInterfaceEmpty testInterfaceEmptyMethod();
208 void voidMethodTestInterfaceEmptyArg(TestInterfaceEmpty testInterfaceEmptyAr g); 207 void voidMethodTestInterfaceEmptyArg(TestInterfaceEmpty testInterfaceEmptyAr g);
209 void voidMethodLongArgTestInterfaceEmptyArg(long longArg, TestInterfaceEmpty testInterfaceEmptyArg); 208 void voidMethodLongArgTestInterfaceEmptyArg(long longArg, TestInterfaceEmpty testInterfaceEmptyArg);
210 // Special type conversions 209 // Special type conversions
211 CompareHow compareHowMethod(); 210 CompareHow compareHowMethod();
212 DOMStringList domStringListMethod();
213 MediaQueryListListener mediaQueryListListenerMethod(); 211 MediaQueryListListener mediaQueryListListenerMethod();
214 any anyMethod(); 212 any anyMethod();
215 void voidMethodMediaQueryListListenerArg(MediaQueryListListener mediaQueryLi stListenerArg); 213 void voidMethodMediaQueryListListenerArg(MediaQueryListListener mediaQueryLi stListenerArg);
216 void voidMethodCompareHowArg(CompareHow compareHowArg); 214 void voidMethodCompareHowArg(CompareHow compareHowArg);
217 void voidMethodDOMStringListArg(DOMStringList domStringListArg);
218 void voidMethodAnyArg(any anyArg); 215 void voidMethodAnyArg(any anyArg);
219 // DOM node types 216 // DOM node types
220 void voidMethodAttrArg(Attr attrArg); 217 void voidMethodAttrArg(Attr attrArg);
221 void voidMethodDocumentArg(Document documentArg); 218 void voidMethodDocumentArg(Document documentArg);
222 void voidMethodDocumentTypeArg(DocumentType documentTypeArg); 219 void voidMethodDocumentTypeArg(DocumentType documentTypeArg);
223 void voidMethodElementArg(Element elementArg); 220 void voidMethodElementArg(Element elementArg);
224 void voidMethodNodeArg(Node nodeArg); 221 void voidMethodNodeArg(Node nodeArg);
225 // Typed arrays 222 // Typed arrays
226 ArrayBuffer arrayBufferMethod(); 223 ArrayBuffer arrayBufferMethod();
227 ArrayBufferView arrayBufferViewMethod(); 224 ArrayBufferView arrayBufferViewMethod();
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
292 void voidMethodClampUnsignedShortArg([Clamp] unsigned short clampUnsignedSho rtArg); 289 void voidMethodClampUnsignedShortArg([Clamp] unsigned short clampUnsignedSho rtArg);
293 void voidMethodClampUnsignedLongArg([Clamp] unsigned long clampUnsignedLongA rg); 290 void voidMethodClampUnsignedLongArg([Clamp] unsigned long clampUnsignedLongA rg);
294 // [Default] 291 // [Default]
295 void voidMethodDefaultUndefinedTestInterfaceEmptyArg([Default=Undefined] opt ional TestInterfaceEmpty defaultUndefinedTestInterfaceEmptyArg); 292 void voidMethodDefaultUndefinedTestInterfaceEmptyArg([Default=Undefined] opt ional TestInterfaceEmpty defaultUndefinedTestInterfaceEmptyArg);
296 void voidMethodDefaultUndefinedLongArg([Default=Undefined] optional long def aultUndefinedLongArg); 293 void voidMethodDefaultUndefinedLongArg([Default=Undefined] optional long def aultUndefinedLongArg);
297 void voidMethodDefaultUndefinedStringArg([Default=Undefined] optional DOMStr ing defaultUndefinedStringArg); 294 void voidMethodDefaultUndefinedStringArg([Default=Undefined] optional DOMStr ing defaultUndefinedStringArg);
298 void voidMethodDefaultNullStringStringArg([Default=NullString] optional DOMS tring defaultNullStringStringArg); 295 void voidMethodDefaultNullStringStringArg([Default=NullString] optional DOMS tring defaultNullStringStringArg);
299 // [EnforceRange] 296 // [EnforceRange]
300 void voidMethodEnforceRangeLongArg([EnforceRange] long enforceRangeLongArg); 297 void voidMethodEnforceRangeLongArg([EnforceRange] long enforceRangeLongArg);
301 }; 298 };
OLDNEW
« no previous file with comments | « Source/bindings/tests/idls/TestCallback.idl ('k') | Source/bindings/tests/results/V8TestCallback.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698