| 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 767 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 778 | 778 |
| 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 webkitURL; | 784 attribute [Conditional=BLOB] DOMURLConstructor webkitURL; |
| 785 | 785 |
| 786 attribute [Conditional=MUTATION_OBSERVERS] MutationObserverConstructor W
ebKitMutationObserver; | 786 attribute [Conditional=MUTATION_OBSERVERS] MutationObserverConstructor W
ebKitMutationObserver; |
| 787 | 787 |
| 788 attribute [Conditional=MEDIA_SOURCE, V8EnabledAtRuntime=mediaSource] Med
iaSourceConstructor MediaSource; | |
| 789 attribute [Conditional=MEDIA_SOURCE, V8EnabledAtRuntime=mediaSource] Sou
rceBufferConstructor SourceBuffer; | 788 attribute [Conditional=MEDIA_SOURCE, V8EnabledAtRuntime=mediaSource] Sou
rceBufferConstructor SourceBuffer; |
| 790 attribute [Conditional=MEDIA_SOURCE, V8EnabledAtRuntime=mediaSource] Sou
rceBufferListConstructor SourceBufferList; | 789 attribute [Conditional=MEDIA_SOURCE, V8EnabledAtRuntime=mediaSource] Sou
rceBufferListConstructor SourceBufferList; |
| 791 | 790 |
| 792 #endif // defined(LANGUAGE_JAVASCRIPT) | 791 #endif // defined(LANGUAGE_JAVASCRIPT) |
| 793 | 792 |
| 794 #if defined(V8_BINDING) && V8_BINDING | 793 #if defined(V8_BINDING) && V8_BINDING |
| 795 // window.toString() requires special handling in V8 | 794 // window.toString() requires special handling in V8 |
| 796 [V8DoNotCheckSignature, DoNotCheckSecurity, Custom, NotEnumerable] DOMSt
ring toString(); | 795 [V8DoNotCheckSignature, DoNotCheckSecurity, Custom, NotEnumerable] DOMSt
ring toString(); |
| 797 #endif // defined(V8_BINDING) | 796 #endif // defined(V8_BINDING) |
| 798 }; | 797 }; |
| 799 | 798 |
| 800 } | 799 } |
| 801 | 800 |
| OLD | NEW |