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

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

Issue 860353002: IDL: Add toRestricted{Float,Double}() helpers to V8Binding.h (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: add FIXME comment Created 5 years, 11 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 143 matching lines...) Expand 10 before | Expand all | Expand 10 after
154 static attribute DOMString staticStringAttribute; 154 static attribute DOMString staticStringAttribute;
155 static attribute long staticLongAttribute; 155 static attribute long staticLongAttribute;
156 // Exceptional type 156 // Exceptional type
157 attribute EventHandler eventHandlerAttribute; 157 attribute EventHandler eventHandlerAttribute;
158 // Union types 158 // Union types
159 attribute (double or DOMString) doubleOrStringAttribute; 159 attribute (double or DOMString) doubleOrStringAttribute;
160 attribute (double or DOMString)? doubleOrStringOrNullAttribute; 160 attribute (double or DOMString)? doubleOrStringOrNullAttribute;
161 attribute (double? or DOMString) doubleOrNullStringAttribute; 161 attribute (double? or DOMString) doubleOrNullStringAttribute;
162 attribute (DOMString or sequence<DOMString>) stringOrStringSequenceAttribute ; 162 attribute (DOMString or sequence<DOMString>) stringOrStringSequenceAttribute ;
163 attribute (TestEnum or double) testEnumOrDoubleAttribute; 163 attribute (TestEnum or double) testEnumOrDoubleAttribute;
164 attribute (unrestricted double or DOMString) unrestrictedDoubleOrStringAttri bute;
164 165
165 // Extended attributes 166 // Extended attributes
166 [LogActivity, LogAllWorlds] attribute long activityLoggingAccessForAllWorlds LongAttribute; 167 [LogActivity, LogAllWorlds] attribute long activityLoggingAccessForAllWorlds LongAttribute;
167 [LogActivity=GetterOnly, LogAllWorlds] attribute long activityLoggingGetterF orAllWorldsLongAttribute; 168 [LogActivity=GetterOnly, LogAllWorlds] attribute long activityLoggingGetterF orAllWorldsLongAttribute;
168 [LogActivity=SetterOnly, LogAllWorlds] attribute long activityLoggingSetterF orAllWorldsLongAttribute; 169 [LogActivity=SetterOnly, LogAllWorlds] attribute long activityLoggingSetterF orAllWorldsLongAttribute;
169 [CachedAttribute=isValueDirty] attribute any cachedAttributeAnyAttribute; 170 [CachedAttribute=isValueDirty] attribute any cachedAttributeAnyAttribute;
170 [CachedAttribute=isArrayDirty] attribute DOMString[] cachedArrayAttribute; 171 [CachedAttribute=isArrayDirty] attribute DOMString[] cachedArrayAttribute;
171 [CachedAttribute=isStringDirty] attribute DOMString? cachedStringOrNoneAttri bute; 172 [CachedAttribute=isStringDirty] attribute DOMString? cachedStringOrNoneAttri bute;
172 [CallWith=ExecutionContext] attribute any callWithExecutionContextAnyAttribu te; 173 [CallWith=ExecutionContext] attribute any callWithExecutionContextAnyAttribu te;
173 [CallWith=ScriptState] attribute any callWithScriptStateAnyAttribute; 174 [CallWith=ScriptState] attribute any callWithScriptStateAnyAttribute;
(...skipping 403 matching lines...) Expand 10 before | Expand all | Expand 10 after
577 [ImplementedInPrivateScript] attribute DOMString stringAttribute; 578 [ImplementedInPrivateScript] attribute DOMString stringAttribute;
578 [ImplementedInPrivateScript] attribute Node nodeAttribute; 579 [ImplementedInPrivateScript] attribute Node nodeAttribute;
579 [OnlyExposedToPrivateScript] short methodImplementedInCPPForPrivateScriptOnl y(short value1, short value2); 580 [OnlyExposedToPrivateScript] short methodImplementedInCPPForPrivateScriptOnl y(short value1, short value2);
580 [OnlyExposedToPrivateScript] attribute DOMString attributeImplementedInCPPFo rPrivateScriptOnly; 581 [OnlyExposedToPrivateScript] attribute DOMString attributeImplementedInCPPFo rPrivateScriptOnly;
581 [ImplementedInPrivateScript, OnlyExposedToPrivateScript] short methodForPriv ateScriptOnly(short value1, short value2); 582 [ImplementedInPrivateScript, OnlyExposedToPrivateScript] short methodForPriv ateScriptOnly(short value1, short value2);
582 [ImplementedInPrivateScript, OnlyExposedToPrivateScript] attribute DOMString attributeForPrivateScriptOnly; 583 [ImplementedInPrivateScript, OnlyExposedToPrivateScript] attribute DOMString attributeForPrivateScriptOnly;
583 [ImplementedInPrivateScript] attribute TestEnum enumForPrivateScript; 584 [ImplementedInPrivateScript] attribute TestEnum enumForPrivateScript;
584 585
585 maplike<long, DOMString>; 586 maplike<long, DOMString>;
586 }; 587 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698