| 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 * Copyright (C) 2011 Google Inc. All rights reserved. | 3 * Copyright (C) 2011 Google Inc. All rights reserved. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. 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 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
| (...skipping 768 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 779 attribute [Conditional=BLOB|FILE_SYSTEM] FileErrorConstructor FileError; | 779 attribute [Conditional=BLOB|FILE_SYSTEM] FileErrorConstructor FileError; |
| 780 attribute [Conditional=BLOB] FileReaderConstructor FileReader; | 780 attribute [Conditional=BLOB] FileReaderConstructor FileReader; |
| 781 | 781 |
| 782 attribute [Conditional=BLOB&LEGACY_WEBKIT_BLOB_BUILDER] WebKitBlobBuilde
rConstructor WebKitBlobBuilder; | 782 attribute [Conditional=BLOB&LEGACY_WEBKIT_BLOB_BUILDER] WebKitBlobBuilde
rConstructor WebKitBlobBuilder; |
| 783 | 783 |
| 784 attribute [Conditional=BLOB] DOMURLConstructor URL; | 784 attribute [Conditional=BLOB] DOMURLConstructor URL; |
| 785 attribute [Conditional=BLOB] DOMURLConstructor webkitURL; // FIXME: depr
ecate this. | 785 attribute [Conditional=BLOB] DOMURLConstructor webkitURL; // FIXME: depr
ecate this. |
| 786 | 786 |
| 787 attribute [Conditional=MUTATION_OBSERVERS] MutationObserverConstructor W
ebKitMutationObserver; | 787 attribute [Conditional=MUTATION_OBSERVERS] MutationObserverConstructor W
ebKitMutationObserver; |
| 788 | 788 |
| 789 attribute [Conditional=MEDIA_SOURCE, V8EnabledAtRuntime=mediaSource] Med
iaSourceConstructor MediaSource; | 789 attribute [Conditional=MEDIA_SOURCE, V8EnabledAtRuntime=mediaSource] Med
iaSourceConstructor WebKitMediaSource; |
| 790 attribute [Conditional=MEDIA_SOURCE, V8EnabledAtRuntime=mediaSource] Sou
rceBufferConstructor SourceBuffer; | 790 attribute [Conditional=MEDIA_SOURCE, V8EnabledAtRuntime=mediaSource] Sou
rceBufferConstructor WebKitSourceBuffer; |
| 791 attribute [Conditional=MEDIA_SOURCE, V8EnabledAtRuntime=mediaSource] Sou
rceBufferListConstructor SourceBufferList; | 791 attribute [Conditional=MEDIA_SOURCE, V8EnabledAtRuntime=mediaSource] Sou
rceBufferListConstructor WebKitSourceBufferList; |
| 792 | 792 |
| 793 #endif // defined(LANGUAGE_JAVASCRIPT) | 793 #endif // defined(LANGUAGE_JAVASCRIPT) |
| 794 | 794 |
| 795 #if defined(V8_BINDING) && V8_BINDING | 795 #if defined(V8_BINDING) && V8_BINDING |
| 796 // window.toString() requires special handling in V8 | 796 // window.toString() requires special handling in V8 |
| 797 [V8DoNotCheckSignature, DoNotCheckSecurity, Custom, NotEnumerable] DOMSt
ring toString(); | 797 [V8DoNotCheckSignature, DoNotCheckSecurity, Custom, NotEnumerable] DOMSt
ring toString(); |
| 798 #endif // defined(V8_BINDING) | 798 #endif // defined(V8_BINDING) |
| 799 }; | 799 }; |
| 800 | 800 |
| 801 } | 801 } |
| 802 | 802 |
| OLD | NEW |