| 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 774 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 785 | 785 |
| 786 [Conditional=BLOB|FILE_SYSTEM] attribute FileErrorConstructor FileError; | 786 [Conditional=BLOB|FILE_SYSTEM] attribute FileErrorConstructor FileError; |
| 787 [Conditional=BLOB] attribute FileReaderConstructor FileReader; | 787 [Conditional=BLOB] attribute FileReaderConstructor FileReader; |
| 788 | 788 |
| 789 [Conditional=BLOB] attribute DOMURLConstructor URL; | 789 [Conditional=BLOB] attribute DOMURLConstructor URL; |
| 790 [Conditional=BLOB] attribute DOMURLConstructor webkitURL; // FIXME: deprecat
e this. | 790 [Conditional=BLOB] attribute DOMURLConstructor webkitURL; // FIXME: deprecat
e this. |
| 791 | 791 |
| 792 attribute MutationObserverConstructor WebKitMutationObserver; // FIXME: Add
metrics to determine when we can remove this. | 792 attribute MutationObserverConstructor WebKitMutationObserver; // FIXME: Add
metrics to determine when we can remove this. |
| 793 attribute MutationObserverConstructor MutationObserver; | 793 attribute MutationObserverConstructor MutationObserver; |
| 794 | 794 |
| 795 [Conditional=MEDIA_SOURCE, V8EnabledAtRuntime=mediaSource] attribute MediaSo
urceConstructor WebKitMediaSource; | 795 [V8EnabledAtRuntime=mediaSource] attribute MediaSourceConstructor WebKitMedi
aSource; |
| 796 [Conditional=MEDIA_SOURCE, V8EnabledAtRuntime=mediaSource] attribute SourceB
ufferConstructor WebKitSourceBuffer; | 796 [V8EnabledAtRuntime=mediaSource] attribute SourceBufferConstructor WebKitSou
rceBuffer; |
| 797 [Conditional=MEDIA_SOURCE, V8EnabledAtRuntime=mediaSource] attribute SourceB
ufferListConstructor WebKitSourceBufferList; | 797 [V8EnabledAtRuntime=mediaSource] attribute SourceBufferListConstructor WebKi
tSourceBufferList; |
| 798 | 798 |
| 799 #endif // defined(LANGUAGE_JAVASCRIPT) | 799 #endif // defined(LANGUAGE_JAVASCRIPT) |
| 800 | 800 |
| 801 #if defined(V8_BINDING) && V8_BINDING | 801 #if defined(V8_BINDING) && V8_BINDING |
| 802 // window.toString() requires special handling in V8 | 802 // window.toString() requires special handling in V8 |
| 803 [V8DoNotCheckSignature, DoNotCheckSecurity, Custom, NotEnumerable] DOMString
toString(); | 803 [V8DoNotCheckSignature, DoNotCheckSecurity, Custom, NotEnumerable] DOMString
toString(); |
| 804 #endif // defined(V8_BINDING) | 804 #endif // defined(V8_BINDING) |
| 805 }; | 805 }; |
| 806 | 806 |
| OLD | NEW |