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

Side by Side Diff: sky/engine/bindings/tests/idls/TestObject.idl

Issue 671173006: Remove lots of machinery related to inline event handlers. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 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 unified diff | Download patch
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 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
143 attribute float[] floatArrayAttribute; 143 attribute float[] floatArrayAttribute;
144 // Nullable attributes 144 // Nullable attributes
145 attribute DOMString? stringOrNullAttribute; 145 attribute DOMString? stringOrNullAttribute;
146 attribute long? longOrNullAttribute; 146 attribute long? longOrNullAttribute;
147 attribute TestInterface? testInterfaceOrNullAttribute; 147 attribute TestInterface? testInterfaceOrNullAttribute;
148 // Enumerations 148 // Enumerations
149 attribute TestEnum testEnumAttribute; 149 attribute TestEnum testEnumAttribute;
150 // Static attributes 150 // Static attributes
151 static attribute DOMString staticStringAttribute; 151 static attribute DOMString staticStringAttribute;
152 static attribute long staticLongAttribute; 152 static attribute long staticLongAttribute;
153 // Exceptional type
154 attribute EventHandler eventHandlerAttribute;
155 153
156 // Extended attributes 154 // Extended attributes
157 [CachedAttribute=isValueDirty] attribute any cachedAttributeAnyAttribute; 155 [CachedAttribute=isValueDirty] attribute any cachedAttributeAnyAttribute;
158 [CachedAttribute=isArrayDirty] attribute DOMString[] cachedArrayAttribute; 156 [CachedAttribute=isArrayDirty] attribute DOMString[] cachedArrayAttribute;
159 [CachedAttribute=isStringDirty] attribute DOMString? cachedStringOrNoneAttri bute; 157 [CachedAttribute=isStringDirty] attribute DOMString? cachedStringOrNoneAttri bute;
160 [CallWith=ExecutionContext] attribute any callWithExecutionContextAnyAttribu te; 158 [CallWith=ExecutionContext] attribute any callWithExecutionContextAnyAttribu te;
161 [CallWith=ScriptState] attribute any callWithScriptStateAnyAttribute; 159 [CallWith=ScriptState] attribute any callWithScriptStateAnyAttribute;
162 [CallWith=(ExecutionContext,ScriptState)] attribute any callWithExecutionCon textAndScriptStateAnyAttribute; 160 [CallWith=(ExecutionContext,ScriptState)] attribute any callWithExecutionCon textAndScriptStateAnyAttribute;
163 [CheckSecurity=Node] readonly attribute Document checkSecurityForNodeReadonl yDocumentAttribute; // All uses are read only 161 [CheckSecurity=Node] readonly attribute Document checkSecurityForNodeReadonl yDocumentAttribute; // All uses are read only
164 [Conditional=CONDITION] attribute long conditionalLongAttribute; 162 [Conditional=CONDITION] attribute long conditionalLongAttribute;
(...skipping 362 matching lines...) Expand 10 before | Expand all | Expand 10 after
527 [ImplementedInPrivateScript] readonly attribute short readonlyShortAttribute ; 525 [ImplementedInPrivateScript] readonly attribute short readonlyShortAttribute ;
528 [ImplementedInPrivateScript] attribute short shortAttribute; 526 [ImplementedInPrivateScript] attribute short shortAttribute;
529 [ImplementedInPrivateScript] attribute DOMString stringAttribute; 527 [ImplementedInPrivateScript] attribute DOMString stringAttribute;
530 [ImplementedInPrivateScript] attribute Node nodeAttribute; 528 [ImplementedInPrivateScript] attribute Node nodeAttribute;
531 [OnlyExposedToPrivateScript] short methodImplementedInCPPForPrivateScriptOnl y(short value1, short value2); 529 [OnlyExposedToPrivateScript] short methodImplementedInCPPForPrivateScriptOnl y(short value1, short value2);
532 [OnlyExposedToPrivateScript] attribute DOMString attributeImplementedInCPPFo rPrivateScriptOnly; 530 [OnlyExposedToPrivateScript] attribute DOMString attributeImplementedInCPPFo rPrivateScriptOnly;
533 [ImplementedInPrivateScript, OnlyExposedToPrivateScript] short methodForPriv ateScriptOnly(short value1, short value2); 531 [ImplementedInPrivateScript, OnlyExposedToPrivateScript] short methodForPriv ateScriptOnly(short value1, short value2);
534 [ImplementedInPrivateScript, OnlyExposedToPrivateScript] attribute DOMString attributeForPrivateScriptOnly; 532 [ImplementedInPrivateScript, OnlyExposedToPrivateScript] attribute DOMString attributeForPrivateScriptOnly;
535 [ImplementedInPrivateScript] attribute TestEnum enumForPrivateScript; 533 [ImplementedInPrivateScript] attribute TestEnum enumForPrivateScript;
536 }; 534 };
OLDNEW
« no previous file with comments | « sky/engine/bindings/tests/idls/TestInterfaceNode.idl ('k') | sky/engine/core/animation/AnimationPlayer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698