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

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

Issue 22553002: Make EventListener a callback interface (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 4 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | Source/bindings/tests/results/V8TestObject.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 attribute TestEnumType enumAttr; 48 attribute TestEnumType enumAttr;
49 readonly attribute TestEnumType readOnlyEnumAttr; 49 readonly attribute TestEnumType readOnlyEnumAttr;
50 attribute byte byteAttr; 50 attribute byte byteAttr;
51 attribute octet octetAttr; 51 attribute octet octetAttr;
52 attribute short shortAttr; 52 attribute short shortAttr;
53 attribute unsigned short unsignedShortAttr; 53 attribute unsigned short unsignedShortAttr;
54 attribute long longAttr; 54 attribute long longAttr;
55 attribute long long longLongAttr; 55 attribute long long longLongAttr;
56 attribute unsigned long long unsignedLongLongAttr; 56 attribute unsigned long long unsignedLongLongAttr;
57 attribute DOMString stringAttr; 57 attribute DOMString stringAttr;
58 attribute EventListener eventListenerAttr;
58 [MeasureAs=TestFeature] attribute TestObject testObjAttr; 59 [MeasureAs=TestFeature] attribute TestObject testObjAttr;
59 60
60 // WK_ucfirst, WK_lcfirst exceptional cases. 61 // WK_ucfirst, WK_lcfirst exceptional cases.
61 attribute TestObject XMLObjAttr; 62 attribute TestObject XMLObjAttr;
62 attribute boolean create; 63 attribute boolean create;
63 64
64 // Reflected DOM attributes 65 // Reflected DOM attributes
65 [Reflect] attribute DOMString reflectedStringAttr; 66 [Reflect] attribute DOMString reflectedStringAttr;
66 [Reflect] attribute long reflectedIntegralAttr; 67 [Reflect] attribute long reflectedIntegralAttr;
67 [Reflect] attribute unsigned long reflectedUnsignedIntegralAttr; 68 [Reflect] attribute unsigned long reflectedUnsignedIntegralAttr;
(...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after
317 318
318 [DeprecateAs=Method] void deprecatedMethod(); 319 [DeprecateAs=Method] void deprecatedMethod();
319 [DeprecateAs=StaticMethod] static void deprecatedStaticMethod(); 320 [DeprecateAs=StaticMethod] static void deprecatedStaticMethod();
320 321
321 [DeprecateAs=Constant] const unsigned short DEPRECATED_CONSTANT = 1; 322 [DeprecateAs=Constant] const unsigned short DEPRECATED_CONSTANT = 1;
322 }; 323 };
323 324
324 // The following comment should not generate any code 325 // The following comment should not generate any code
325 // TestObject implements TestImplements; 326 // TestObject implements TestImplements;
326 327
OLDNEW
« no previous file with comments | « no previous file | Source/bindings/tests/results/V8TestObject.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698