OLD | NEW |
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 494 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
505 [CallWith=ExecutionContext] void callWithExecutionContextVoidMethod(); | 505 [CallWith=ExecutionContext] void callWithExecutionContextVoidMethod(); |
506 [CallWith=ScriptState] void callWithScriptStateVoidMethod(); | 506 [CallWith=ScriptState] void callWithScriptStateVoidMethod(); |
507 [CallWith=ScriptState] long callWithScriptStateLongMethod(); | 507 [CallWith=ScriptState] long callWithScriptStateLongMethod(); |
508 [CallWith=(ScriptState,ExecutionContext)] void callWithScriptStateExecutionC
ontextVoidMethod(); | 508 [CallWith=(ScriptState,ExecutionContext)] void callWithScriptStateExecutionC
ontextVoidMethod(); |
509 [CallWith=(ScriptState,ScriptArguments)] void callWithScriptStateScriptArgum
entsVoidMethod(); | 509 [CallWith=(ScriptState,ScriptArguments)] void callWithScriptStateScriptArgum
entsVoidMethod(); |
510 [CallWith=(ScriptState,ScriptArguments)] void callWithScriptStateScriptArgum
entsVoidMethodOptionalBooleanArg(optional boolean optionalBooleanArg); | 510 [CallWith=(ScriptState,ScriptArguments)] void callWithScriptStateScriptArgum
entsVoidMethodOptionalBooleanArg(optional boolean optionalBooleanArg); |
511 [CallWith=ActiveWindow] void callWithActiveWindow(); | 511 [CallWith=ActiveWindow] void callWithActiveWindow(); |
512 [CallWith=(ActiveWindow,FirstWindow)] void callWithActiveWindowScriptWindow(
); | 512 [CallWith=(ActiveWindow,FirstWindow)] void callWithActiveWindowScriptWindow(
); |
513 [CallWith=ThisValue] void callWithThisValue(); | 513 [CallWith=ThisValue] void callWithThisValue(); |
514 [CheckSecurity=Node] void checkSecurityForNodeVoidMethod(); | 514 [CheckSecurity=Node] void checkSecurityForNodeVoidMethod(); |
| 515 [ClearCachedAttributes=(one)] void clearSingleCachedAttribute(); |
| 516 [ClearCachedAttributes=(one, two, three)] void clearMultipleCachedAttributes
(); |
515 [Conditional=CONDITION] void conditionalConditionVoidMethod(); | 517 [Conditional=CONDITION] void conditionalConditionVoidMethod(); |
516 [Conditional=CONDITION] static void conditionalConditionStaticVoidMethod(); | 518 [Conditional=CONDITION] static void conditionalConditionStaticVoidMethod(); |
517 [Custom] void customVoidMethod(); | 519 [Custom] void customVoidMethod(); |
518 [Custom=CallEpilogue] void customCallEpilogueVoidMethod(); | 520 [Custom=CallEpilogue] void customCallEpilogueVoidMethod(); |
519 [Conditional=CONDITION, Custom] void conditionalConditionCustomVoidMethod(); | 521 [Conditional=CONDITION, Custom] void conditionalConditionCustomVoidMethod(); |
520 [CustomElementCallbacks] void customElementCallbacksVoidMethod(); | 522 [CustomElementCallbacks] void customElementCallbacksVoidMethod(); |
521 [DeprecateAs=voidMethod] void deprecatedVoidMethod(); | 523 [DeprecateAs=voidMethod] void deprecatedVoidMethod(); |
522 [DoNotCheckSignature] void doNotCheckSignatureVoidMethod(); | 524 [DoNotCheckSignature] void doNotCheckSignatureVoidMethod(); |
523 [ImplementedAs=implementedAsMethodName] void implementedAsVoidMethod(); | 525 [ImplementedAs=implementedAsMethodName] void implementedAsVoidMethod(); |
524 [MeasureAs=TestFeature] void measureAsVoidMethod(); | 526 [MeasureAs=TestFeature] void measureAsVoidMethod(); |
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
601 [ImplementedInPrivateScript] attribute DOMString stringAttribute; | 603 [ImplementedInPrivateScript] attribute DOMString stringAttribute; |
602 [ImplementedInPrivateScript] attribute Node nodeAttribute; | 604 [ImplementedInPrivateScript] attribute Node nodeAttribute; |
603 [OnlyExposedToPrivateScript] short methodImplementedInCPPForPrivateScriptOnl
y(short value1, short value2); | 605 [OnlyExposedToPrivateScript] short methodImplementedInCPPForPrivateScriptOnl
y(short value1, short value2); |
604 [OnlyExposedToPrivateScript] attribute DOMString attributeImplementedInCPPFo
rPrivateScriptOnly; | 606 [OnlyExposedToPrivateScript] attribute DOMString attributeImplementedInCPPFo
rPrivateScriptOnly; |
605 [ImplementedInPrivateScript, OnlyExposedToPrivateScript] short methodForPriv
ateScriptOnly(short value1, short value2); | 607 [ImplementedInPrivateScript, OnlyExposedToPrivateScript] short methodForPriv
ateScriptOnly(short value1, short value2); |
606 [ImplementedInPrivateScript, OnlyExposedToPrivateScript] attribute DOMString
attributeForPrivateScriptOnly; | 608 [ImplementedInPrivateScript, OnlyExposedToPrivateScript] attribute DOMString
attributeForPrivateScriptOnly; |
607 [ImplementedInPrivateScript] attribute TestEnum enumForPrivateScript; | 609 [ImplementedInPrivateScript] attribute TestEnum enumForPrivateScript; |
608 | 610 |
609 maplike<long, DOMStringOrDouble>; | 611 maplike<long, DOMStringOrDouble>; |
610 }; | 612 }; |
OLD | NEW |