Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(50)

Side by Side Diff: WebCore/page/DOMWindow.idl

Issue 3444009: Merge 67734 - createBlobURL with no argument causes crash.... (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/517/
Patch Set: Created 10 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « WebCore/dom/ScriptExecutionContext.cpp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 * 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 742 matching lines...) Expand 10 before | Expand all | Expand 10 after
753 attribute [Conditional=TOUCH_EVENTS] TouchEventConstructor TouchEvent; 753 attribute [Conditional=TOUCH_EVENTS] TouchEventConstructor TouchEvent;
754 754
755 attribute DOMFormDataConstructor FormData; 755 attribute DOMFormDataConstructor FormData;
756 756
757 attribute [Conditional=BLOB|FILE_WRITER] FileErrorConstructor FileError; 757 attribute [Conditional=BLOB|FILE_WRITER] FileErrorConstructor FileError;
758 attribute [Conditional=BLOB] FileReaderConstructor FileReader; 758 attribute [Conditional=BLOB] FileReaderConstructor FileReader;
759 759
760 attribute [Conditional=BLOB] BlobBuilderConstructor BlobBuilder; 760 attribute [Conditional=BLOB] BlobBuilderConstructor BlobBuilder;
761 761
762 #if defined(ENABLE_BLOB) && ENABLE_BLOB 762 #if defined(ENABLE_BLOB) && ENABLE_BLOB
763 DOMString createBlobURL(in Blob blob); 763 [ConvertNullStringTo=Undefined] DOMString createBlobURL(in Blob blob);
764 void revokeBlobURL(in DOMString blobURL); 764 void revokeBlobURL(in DOMString blobURL);
765 #endif 765 #endif
766 766
767 #endif // defined(LANGUAGE_JAVASCRIPT) 767 #endif // defined(LANGUAGE_JAVASCRIPT)
768 768
769 #if defined(V8_BINDING) && V8_BINDING 769 #if defined(V8_BINDING) && V8_BINDING
770 // window.toString() requires special handling in V8 770 // window.toString() requires special handling in V8
771 [V8DoNotCheckSignature, DoNotCheckDomainSecurity, Custom, DontEnum] DOMS tring toString(); 771 [V8DoNotCheckSignature, DoNotCheckDomainSecurity, Custom, DontEnum] DOMS tring toString();
772 #endif // defined(V8_BINDING) 772 #endif // defined(V8_BINDING)
773 }; 773 };
774 774
775 } 775 }
776 776
OLDNEW
« no previous file with comments | « WebCore/dom/ScriptExecutionContext.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698