Title: [99764] trunk/Source/WebCore
Revision
99764
Author
hara...@chromium.org
Date
2011-11-09 14:58:30 -0800 (Wed, 09 Nov 2011)

Log Message

Replace [CanBeConstructed] IDL with [Constructor] IDL
https://bugs.webkit.org/show_bug.cgi?id=71927

Reviewed by Adam Barth.

With respect to the IDL files that have [CanBeConstructed]
but do not have [Constructor] nor [CustomConstructor],
[CanBeConstructed] is now equivalent to [Constructor].
Thus, this patch replaces [CanBeConstructed] with [Constructor].

No tests. No change in behavior.

* fileapi/FileReaderSync.idl: As I described above.
* fileapi/WebKitBlobBuilder.idl: Ditto.
* fileapi/WebKitFlags.idl: Ditto.
* xml/DOMParser.idl: Ditto.
* xml/XMLSerializer.idl: Ditto.
* xml/XPathEvaluator.idl: Ditto.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (99763 => 99764)


--- trunk/Source/WebCore/ChangeLog	2011-11-09 22:53:03 UTC (rev 99763)
+++ trunk/Source/WebCore/ChangeLog	2011-11-09 22:58:30 UTC (rev 99764)
@@ -1,3 +1,24 @@
+2011-11-09  Kentaro Hara  <hara...@chromium.org>
+
+        Replace [CanBeConstructed] IDL with [Constructor] IDL
+        https://bugs.webkit.org/show_bug.cgi?id=71927
+
+        Reviewed by Adam Barth.
+
+        With respect to the IDL files that have [CanBeConstructed]
+        but do not have [Constructor] nor [CustomConstructor],
+        [CanBeConstructed] is now equivalent to [Constructor].
+        Thus, this patch replaces [CanBeConstructed] with [Constructor].
+
+        No tests. No change in behavior.
+
+        * fileapi/FileReaderSync.idl: As I described above.
+        * fileapi/WebKitBlobBuilder.idl: Ditto.
+        * fileapi/WebKitFlags.idl: Ditto.
+        * xml/DOMParser.idl: Ditto.
+        * xml/XMLSerializer.idl: Ditto.
+        * xml/XPathEvaluator.idl: Ditto.
+
 2011-11-09  Noel Gordon  <noel.gor...@gmail.com>
 
         [chromium] Separate image encoding from dataURL construction

Modified: trunk/Source/WebCore/fileapi/FileReaderSync.idl (99763 => 99764)


--- trunk/Source/WebCore/fileapi/FileReaderSync.idl	2011-11-09 22:53:03 UTC (rev 99763)
+++ trunk/Source/WebCore/fileapi/FileReaderSync.idl	2011-11-09 22:58:30 UTC (rev 99764)
@@ -31,7 +31,7 @@
 module html {
     interface [
         Conditional=BLOB,
-        CanBeConstructed,
+        Constructor,
         NoStaticTables
     ] FileReaderSync {
         [CallWith=ScriptExecutionContext] ArrayBuffer readAsArrayBuffer(in Blob blob)

Modified: trunk/Source/WebCore/fileapi/WebKitBlobBuilder.idl (99763 => 99764)


--- trunk/Source/WebCore/fileapi/WebKitBlobBuilder.idl	2011-11-09 22:53:03 UTC (rev 99763)
+++ trunk/Source/WebCore/fileapi/WebKitBlobBuilder.idl	2011-11-09 22:58:30 UTC (rev 99764)
@@ -30,7 +30,7 @@
 
 module html {
     interface [
-        CanBeConstructed,
+        Constructor,
         GenerateNativeConverter,
         NoStaticTables
     ] WebKitBlobBuilder {

Modified: trunk/Source/WebCore/fileapi/WebKitFlags.idl (99763 => 99764)


--- trunk/Source/WebCore/fileapi/WebKitFlags.idl	2011-11-09 22:53:03 UTC (rev 99763)
+++ trunk/Source/WebCore/fileapi/WebKitFlags.idl	2011-11-09 22:58:30 UTC (rev 99764)
@@ -31,7 +31,7 @@
 module storage {
     interface [
         Conditional=FILE_SYSTEM,
-        CanBeConstructed,
+        Constructor,
         NoStaticTables
     ] WebKitFlags {
         attribute boolean create;

Modified: trunk/Source/WebCore/xml/DOMParser.idl (99763 => 99764)


--- trunk/Source/WebCore/xml/DOMParser.idl	2011-11-09 22:53:03 UTC (rev 99763)
+++ trunk/Source/WebCore/xml/DOMParser.idl	2011-11-09 22:58:30 UTC (rev 99764)
@@ -19,7 +19,7 @@
 
 module xpath {
     interface [
-        CanBeConstructed
+        Constructor
     ] DOMParser {
         Document parseFromString(in [Optional=CallWithDefaultValue] DOMString str, 
                                  in [Optional=CallWithDefaultValue] DOMString contentType);

Modified: trunk/Source/WebCore/xml/XMLSerializer.idl (99763 => 99764)


--- trunk/Source/WebCore/xml/XMLSerializer.idl	2011-11-09 22:53:03 UTC (rev 99763)
+++ trunk/Source/WebCore/xml/XMLSerializer.idl	2011-11-09 22:58:30 UTC (rev 99764)
@@ -21,7 +21,7 @@
 module xpath {
 
     interface [
-        CanBeConstructed
+        Constructor
     ] XMLSerializer {
         DOMString serializeToString(in [Optional=CallWithDefaultValue] Node node)
             raises(DOMException);

Modified: trunk/Source/WebCore/xml/XPathEvaluator.idl (99763 => 99764)


--- trunk/Source/WebCore/xml/XPathEvaluator.idl	2011-11-09 22:53:03 UTC (rev 99763)
+++ trunk/Source/WebCore/xml/XPathEvaluator.idl	2011-11-09 22:58:30 UTC (rev 99764)
@@ -19,7 +19,7 @@
 
 module xpath {
     interface [
-        CanBeConstructed,
+        Constructor
     ] XPathEvaluator {
         XPathExpression createExpression(in [Optional=CallWithDefaultValue] DOMString _expression_,
                                          in [Optional=CallWithDefaultValue] XPathNSResolver resolver)
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to