Title: [162878] trunk/Source/WebCore
- Revision
- 162878
- Author
- m...@apple.com
- Date
- 2014-01-27 15:50:52 -0800 (Mon, 27 Jan 2014)
Log Message
Move Conditional=BLOB from URL interface to Blob-related methods, to prepare for adding URL API
https://bugs.webkit.org/show_bug.cgi?id=127719
Reviewed by Sam Weinig.
* html/DOMURL.idl:
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (162877 => 162878)
--- trunk/Source/WebCore/ChangeLog 2014-01-27 23:48:45 UTC (rev 162877)
+++ trunk/Source/WebCore/ChangeLog 2014-01-27 23:50:52 UTC (rev 162878)
@@ -1,3 +1,12 @@
+2014-01-27 Maciej Stachowiak <m...@apple.com>
+
+ Move Conditional=BLOB from URL interface to Blob-related methods, to prepare for adding URL API
+ https://bugs.webkit.org/show_bug.cgi?id=127719
+
+ Reviewed by Sam Weinig.
+
+ * html/DOMURL.idl:
+
2014-01-27 Andreas Kling <akl...@apple.com>
Remove unused USE(OPENTYPE_SANITIZER) code.
Modified: trunk/Source/WebCore/html/DOMURL.idl (162877 => 162878)
--- trunk/Source/WebCore/html/DOMURL.idl 2014-01-27 23:48:45 UTC (rev 162877)
+++ trunk/Source/WebCore/html/DOMURL.idl 2014-01-27 23:50:52 UTC (rev 162878)
@@ -26,7 +26,6 @@
[
GlobalContext=DOMWindow&WorkerGlobalScope,
- Conditional=BLOB,
Constructor,
JSGenerateToNativeObject,
JSGenerateToJSObject,
@@ -34,6 +33,6 @@
InterfaceName=URL,
ImplementationLacksVTable,
] interface DOMURL {
- [CallWith=ScriptExecutionContext,TreatReturnedNullStringAs=Null] static DOMString createObjectURL(Blob? blob);
- [CallWith=ScriptExecutionContext] static void revokeObjectURL(DOMString url);
+ [CallWith=ScriptExecutionContext,TreatReturnedNullStringAs=Null,Conditional=BLOB] static DOMString createObjectURL(Blob? blob);
+ [CallWith=ScriptExecutionContext,Conditional=BLOB] static void revokeObjectURL(DOMString url);
};
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes