| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2008 Apple Inc. All Rights Reserved. | 2 * Copyright (C) 2008 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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 attribute WorkerLocationConstructor WorkerLocation; | 76 attribute WorkerLocationConstructor WorkerLocation; |
| 77 | 77 |
| 78 #if ENABLE_CHANNEL_MESSAGING | 78 #if ENABLE_CHANNEL_MESSAGING |
| 79 attribute [JSCustomGetter] MessageChannelConstructor MessageChannel; | 79 attribute [JSCustomGetter] MessageChannelConstructor MessageChannel; |
| 80 #endif | 80 #endif |
| 81 attribute [JSCustomGetter] EventSourceConstructor EventSource; | 81 attribute [JSCustomGetter] EventSourceConstructor EventSource; |
| 82 attribute [JSCustomGetter] XMLHttpRequestConstructor XMLHttpRequest; | 82 attribute [JSCustomGetter] XMLHttpRequestConstructor XMLHttpRequest; |
| 83 #endif | 83 #endif |
| 84 | 84 |
| 85 #if defined(ENABLE_BLOB) && ENABLE_BLOB | 85 #if defined(ENABLE_BLOB) && ENABLE_BLOB |
| 86 attribute WebKitBlobBuilderConstructor WebKitBlobBuilder; | 86 attribute [Conditional=LEGACY_WEBKIT_BLOB_BUILDER] WebKitBlobBuilderCons
tructor WebKitBlobBuilder; |
| 87 attribute BlobConstructor Blob; |
| 87 attribute FileReaderConstructor FileReader; | 88 attribute FileReaderConstructor FileReader; |
| 88 attribute FileReaderSyncConstructor FileReaderSync; | 89 attribute FileReaderSyncConstructor FileReaderSync; |
| 89 #endif | 90 #endif |
| 90 | 91 |
| 91 attribute [Conditional=BLOB] DOMURLConstructor webkitURL; | 92 attribute [Conditional=BLOB] DOMURLConstructor webkitURL; |
| 92 | 93 |
| 93 attribute ArrayBufferConstructor ArrayBuffer; // Usable with new operato
r | 94 attribute ArrayBufferConstructor ArrayBuffer; // Usable with new operato
r |
| 94 attribute Int8ArrayConstructor Int8Array; // Usable with new operator | 95 attribute Int8ArrayConstructor Int8Array; // Usable with new operator |
| 95 attribute Uint8ArrayConstructor Uint8Array; // Usable with new operator | 96 attribute Uint8ArrayConstructor Uint8Array; // Usable with new operator |
| 96 attribute Uint8ArrayConstructor Uint8ClampedArray; // Usable with new op
erator | 97 attribute Uint8ArrayConstructor Uint8ClampedArray; // Usable with new op
erator |
| 97 attribute Int16ArrayConstructor Int16Array; // Usable with new operator | 98 attribute Int16ArrayConstructor Int16Array; // Usable with new operator |
| 98 attribute Uint16ArrayConstructor Uint16Array; // Usable with new operato
r | 99 attribute Uint16ArrayConstructor Uint16Array; // Usable with new operato
r |
| 99 attribute Int32ArrayConstructor Int32Array; // Usable with new operator | 100 attribute Int32ArrayConstructor Int32Array; // Usable with new operator |
| 100 attribute Uint32ArrayConstructor Uint32Array; // Usable with new operato
r | 101 attribute Uint32ArrayConstructor Uint32Array; // Usable with new operato
r |
| 101 attribute Float32ArrayConstructor Float32Array; // Usable with new opera
tor | 102 attribute Float32ArrayConstructor Float32Array; // Usable with new opera
tor |
| 102 attribute Float64ArrayConstructor Float64Array; // Usable with new opera
tor | 103 attribute Float64ArrayConstructor Float64Array; // Usable with new opera
tor |
| 103 attribute DataViewConstructor DataView; // Usable with new operator | 104 attribute DataViewConstructor DataView; // Usable with new operator |
| 104 }; | 105 }; |
| 105 | 106 |
| 106 } | 107 } |
| OLD | NEW |