| 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 496 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 [CheckSecurity=Node] void checkSecurityForNodeVoidMethod(); | 513 [CheckSecurity=Node] void checkSecurityForNodeVoidMethod(); |
| 514 [Conditional=CONDITION] void conditionalConditionVoidMethod(); | 514 [Conditional=CONDITION] void conditionalConditionVoidMethod(); |
| 515 [Conditional=CONDITION] static void conditionalConditionStaticVoidMethod(); | 515 [Conditional=CONDITION] static void conditionalConditionStaticVoidMethod(); |
| 516 [Custom] void customVoidMethod(); | 516 [Custom] void customVoidMethod(); |
| 517 [Custom=CallEpilogue] void customCallEpilogueVoidMethod(); |
| 517 [Conditional=CONDITION, Custom] void conditionalConditionCustomVoidMethod(); | 518 [Conditional=CONDITION, Custom] void conditionalConditionCustomVoidMethod(); |
| 518 [CustomElementCallbacks] void customElementCallbacksVoidMethod(); | 519 [CustomElementCallbacks] void customElementCallbacksVoidMethod(); |
| 519 [DeprecateAs=voidMethod] void deprecatedVoidMethod(); | 520 [DeprecateAs=voidMethod] void deprecatedVoidMethod(); |
| 520 [DoNotCheckSignature] void doNotCheckSignatureVoidMethod(); | 521 [DoNotCheckSignature] void doNotCheckSignatureVoidMethod(); |
| 521 [ImplementedAs=implementedAsMethodName] void implementedAsVoidMethod(); | 522 [ImplementedAs=implementedAsMethodName] void implementedAsVoidMethod(); |
| 522 [MeasureAs=TestFeature] void measureAsVoidMethod(); | 523 [MeasureAs=TestFeature] void measureAsVoidMethod(); |
| 523 [Measure] void measureMethod(); | 524 [Measure] void measureMethod(); |
| 524 [Measure] void measureOverloadedMethod(); | 525 [Measure] void measureOverloadedMethod(); |
| 525 [Measure] void measureOverloadedMethod(long arg); | 526 [Measure] void measureOverloadedMethod(long arg); |
| 526 [DeprecateAs=TestFeatureA] void DeprecateAsOverloadedMethod(); | 527 [DeprecateAs=TestFeatureA] void DeprecateAsOverloadedMethod(); |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 597 [ImplementedInPrivateScript] attribute DOMString stringAttribute; | 598 [ImplementedInPrivateScript] attribute DOMString stringAttribute; |
| 598 [ImplementedInPrivateScript] attribute Node nodeAttribute; | 599 [ImplementedInPrivateScript] attribute Node nodeAttribute; |
| 599 [OnlyExposedToPrivateScript] short methodImplementedInCPPForPrivateScriptOnl
y(short value1, short value2); | 600 [OnlyExposedToPrivateScript] short methodImplementedInCPPForPrivateScriptOnl
y(short value1, short value2); |
| 600 [OnlyExposedToPrivateScript] attribute DOMString attributeImplementedInCPPFo
rPrivateScriptOnly; | 601 [OnlyExposedToPrivateScript] attribute DOMString attributeImplementedInCPPFo
rPrivateScriptOnly; |
| 601 [ImplementedInPrivateScript, OnlyExposedToPrivateScript] short methodForPriv
ateScriptOnly(short value1, short value2); | 602 [ImplementedInPrivateScript, OnlyExposedToPrivateScript] short methodForPriv
ateScriptOnly(short value1, short value2); |
| 602 [ImplementedInPrivateScript, OnlyExposedToPrivateScript] attribute DOMString
attributeForPrivateScriptOnly; | 603 [ImplementedInPrivateScript, OnlyExposedToPrivateScript] attribute DOMString
attributeForPrivateScriptOnly; |
| 603 [ImplementedInPrivateScript] attribute TestEnum enumForPrivateScript; | 604 [ImplementedInPrivateScript] attribute TestEnum enumForPrivateScript; |
| 604 | 605 |
| 605 maplike<long, DOMStringOrDouble>; | 606 maplike<long, DOMStringOrDouble>; |
| 606 }; | 607 }; |
| OLD | NEW |