| 1457 | |
| 1458 | == `[EnabledAtRuntime]`(i) == #EnabledAtRuntime |
| 1459 | |
| 1460 | Standard: this is a non-standard attribute |
| 1461 | |
| 1462 | Summary: If the `[EnabledAtRuntime]` extended attribute is specified on non-callback interface that is not declared with the `[NoInterfaceObject]` extended attribute, it indicates that the corresponding attribute(s) generated on the global Window object can be enabled / disabled at runtime. |
| 1463 | |
| 1464 | The `RuntimeEnabledFeatures` class will be used to determine if the global constructor should be enabled, at runtime. By default, the name of the interface is used as feature name but it is possible to specify the feature name explicitly as well via `[EnabledAtRuntime=FeatureName]`. |
| 1465 | |
| 1466 | Usage: `[EnabledAtRuntime]` can be specified on interfaces. |
| 1467 | |
| 1468 | {{{ |
| 1469 | // window.XXX will only be enabled if RuntimeEnabledFeatures::xXXEnabled() returns true. |
| 1470 | [ |
| 1471 | EnabledAtRuntime |
| 1472 | ] interface XXX { |
| 1473 | ... |
| 1474 | }; |
| 1475 | |
| 1476 | // window.YYY will only be enabled if RuntimeEnabledFeatures::featureNameEnabled() returns true. |
| 1477 | [ |
| 1478 | EnabledAtRuntime=FeatureName |
| 1479 | ] interface YYY { |
| 1480 | ... |
| 1481 | }; |
| 1482 | }}} |