| 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 755 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 766 attribute DOMFormDataConstructor FormData; | 766 attribute DOMFormDataConstructor FormData; |
| 767 | 767 |
| 768 attribute FileErrorConstructor FileError; | 768 attribute FileErrorConstructor FileError; |
| 769 attribute FileReaderConstructor FileReader; | 769 attribute FileReaderConstructor FileReader; |
| 770 | 770 |
| 771 attribute DOMURLConstructor URL; | 771 attribute DOMURLConstructor URL; |
| 772 attribute DOMURLConstructor webkitURL; // FIXME: deprecate this. | 772 attribute DOMURLConstructor webkitURL; // FIXME: deprecate this. |
| 773 | 773 |
| 774 attribute MutationObserverConstructor WebKitMutationObserver; // FIXME: Add
metrics to determine when we can remove this. | 774 attribute MutationObserverConstructor WebKitMutationObserver; // FIXME: Add
metrics to determine when we can remove this. |
| 775 attribute MutationObserverConstructor MutationObserver; | 775 attribute MutationObserverConstructor MutationObserver; |
| 776 attribute MutationRecordConstructor MutationRecord; |
| 776 | 777 |
| 777 [EnabledAtRuntime=mediaSource] attribute MediaSourceConstructor WebKitMediaS
ource; | 778 [EnabledAtRuntime=mediaSource] attribute MediaSourceConstructor WebKitMediaS
ource; |
| 778 [EnabledAtRuntime=mediaSource] attribute SourceBufferConstructor WebKitSourc
eBuffer; | 779 [EnabledAtRuntime=mediaSource] attribute SourceBufferConstructor WebKitSourc
eBuffer; |
| 779 [EnabledAtRuntime=mediaSource] attribute SourceBufferListConstructor WebKitS
ourceBufferList; | 780 [EnabledAtRuntime=mediaSource] attribute SourceBufferListConstructor WebKitS
ourceBufferList; |
| 780 | 781 |
| 781 #endif // defined(LANGUAGE_JAVASCRIPT) | 782 #endif // defined(LANGUAGE_JAVASCRIPT) |
| 782 | 783 |
| 783 #if defined(V8_BINDING) && V8_BINDING | 784 #if defined(V8_BINDING) && V8_BINDING |
| 784 // window.toString() requires special handling in V8 | 785 // window.toString() requires special handling in V8 |
| 785 [DoNotCheckSignature, DoNotCheckSecurity, Custom, NotEnumerable] DOMString t
oString(); | 786 [DoNotCheckSignature, DoNotCheckSecurity, Custom, NotEnumerable] DOMString t
oString(); |
| 786 #endif // defined(V8_BINDING) | 787 #endif // defined(V8_BINDING) |
| 787 }; | 788 }; |
| 788 | 789 |
| OLD | NEW |