| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2008, 2009 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2008, 2009 Apple 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 | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 448 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 459 #endif | 459 #endif |
| 460 | 460 |
| 461 #if defined(ENABLE_WORKERS) && ENABLE_WORKERS | 461 #if defined(ENABLE_WORKERS) && ENABLE_WORKERS |
| 462 attribute [JSCCustomGetter] WorkerConstructor Worker; // Usable with the
new operator | 462 attribute [JSCCustomGetter] WorkerConstructor Worker; // Usable with the
new operator |
| 463 #endif | 463 #endif |
| 464 | 464 |
| 465 #if defined(ENABLE_SHARED_WORKERS) && ENABLE_SHARED_WORKERS | 465 #if defined(ENABLE_SHARED_WORKERS) && ENABLE_SHARED_WORKERS |
| 466 attribute [JSCCustomGetter] SharedWorkerConstructor SharedWorker; // Usa
ble with the new operator | 466 attribute [JSCCustomGetter] SharedWorkerConstructor SharedWorker; // Usa
ble with the new operator |
| 467 #endif | 467 #endif |
| 468 | 468 |
| 469 #if defined(ENABLE_WEB_SOCKETS) && ENABLE_WEB_SOCKETS |
| 470 attribute [JSCCustomGetter] WebSocketConstructor WebSocket; // Usable wi
th the new operator |
| 471 #endif |
| 472 |
| 469 attribute PluginConstructor Plugin; | 473 attribute PluginConstructor Plugin; |
| 470 attribute PluginArrayConstructor PluginArray; | 474 attribute PluginArrayConstructor PluginArray; |
| 471 | 475 |
| 472 attribute MimeTypeConstructor MimeType; | 476 attribute MimeTypeConstructor MimeType; |
| 473 attribute MimeTypeArrayConstructor MimeTypeArray; | 477 attribute MimeTypeArrayConstructor MimeTypeArray; |
| 474 | 478 |
| 475 attribute ClientRectConstructor ClientRect; | 479 attribute ClientRectConstructor ClientRect; |
| 476 attribute ClientRectListConstructor ClientRectList; | 480 attribute ClientRectListConstructor ClientRectList; |
| 477 | 481 |
| 478 #if defined(ENABLE_DOM_STORAGE) && ENABLE_DOM_STORAGE | 482 #if defined(ENABLE_DOM_STORAGE) && ENABLE_DOM_STORAGE |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 524 | 528 |
| 525 #endif // defined(LANGUAGE_JAVASCRIPT) | 529 #endif // defined(LANGUAGE_JAVASCRIPT) |
| 526 | 530 |
| 527 #if defined(V8_BINDING) && V8_BINDING | 531 #if defined(V8_BINDING) && V8_BINDING |
| 528 // window.toString() requires special handling in V8 | 532 // window.toString() requires special handling in V8 |
| 529 [V8DoNotCheckSignature, DoNotCheckDomainSecurity, Custom, DontEnum] DOMS
tring toString(); | 533 [V8DoNotCheckSignature, DoNotCheckDomainSecurity, Custom, DontEnum] DOMS
tring toString(); |
| 530 #endif // defined(V8_BINDING) | 534 #endif // defined(V8_BINDING) |
| 531 }; | 535 }; |
| 532 | 536 |
| 533 } | 537 } |
| OLD | NEW |