Title: [106526] trunk/Source/WebCore
Revision
106526
Author
[email protected]
Date
2012-02-01 18:47:53 -0800 (Wed, 01 Feb 2012)

Log Message

Remove [ImplementationUUID] and [InterfaceUUID] from html/canvas/*.idl
https://bugs.webkit.org/show_bug.cgi?id=77589

Reviewed by Adam Barth.

[ImplementationUUID] and [InterfaceUUID] are used in html/canvas/*.idl,
but they are not implemented in code generators and thus have no meaning.
This patch removes them.

No tests. No change in behavior.

* html/canvas/CanvasGradient.idl:
* html/canvas/CanvasPattern.idl: The file is now empty though.
* html/canvas/CanvasRenderingContext.idl:
* html/canvas/CanvasRenderingContext2D.idl:
* html/canvas/WebGLRenderingContext.idl:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (106525 => 106526)


--- trunk/Source/WebCore/ChangeLog	2012-02-02 02:46:10 UTC (rev 106525)
+++ trunk/Source/WebCore/ChangeLog	2012-02-02 02:47:53 UTC (rev 106526)
@@ -1,3 +1,22 @@
+2012-02-01  Kentaro Hara  <[email protected]>
+
+        Remove [ImplementationUUID] and [InterfaceUUID] from html/canvas/*.idl
+        https://bugs.webkit.org/show_bug.cgi?id=77589
+
+        Reviewed by Adam Barth.
+
+        [ImplementationUUID] and [InterfaceUUID] are used in html/canvas/*.idl,
+        but they are not implemented in code generators and thus have no meaning.
+        This patch removes them.
+
+        No tests. No change in behavior.
+
+        * html/canvas/CanvasGradient.idl:
+        * html/canvas/CanvasPattern.idl: The file is now empty though.
+        * html/canvas/CanvasRenderingContext.idl:
+        * html/canvas/CanvasRenderingContext2D.idl:
+        * html/canvas/WebGLRenderingContext.idl:
+
 2012-02-01  Sheriff Bot  <[email protected]>
 
         Unreviewed, rolling out r106408.

Modified: trunk/Source/WebCore/html/canvas/CanvasGradient.idl (106525 => 106526)


--- trunk/Source/WebCore/html/canvas/CanvasGradient.idl	2012-02-02 02:46:10 UTC (rev 106525)
+++ trunk/Source/WebCore/html/canvas/CanvasGradient.idl	2012-02-02 02:47:53 UTC (rev 106526)
@@ -25,10 +25,7 @@
 
 module html {
 
-    interface [
-        InterfaceUUID=bb1108ea-6b8c-4a08-894a-218628630cdb,
-        ImplementationUUID=a2942ae6-2731-4286-98cc-9d5e79e20de1
-    ] CanvasGradient {
+    interface CanvasGradient {
 
         void addColorStop(in [Optional=CallWithDefaultValue] float offset, 
                           in [Optional=CallWithDefaultValue] DOMString color)

Modified: trunk/Source/WebCore/html/canvas/CanvasPattern.idl (106525 => 106526)


--- trunk/Source/WebCore/html/canvas/CanvasPattern.idl	2012-02-02 02:46:10 UTC (rev 106525)
+++ trunk/Source/WebCore/html/canvas/CanvasPattern.idl	2012-02-02 02:47:53 UTC (rev 106526)
@@ -25,11 +25,7 @@
 
 module html {
 
-    interface [
-        InterfaceUUID=c2131348-6d8c-47b5-86cc-d41aff34ce15,
-        ImplementationUUID=82f5d713-3d17-44dd-aa4a-7766fe345940
-    ] CanvasPattern {
-
+    interface CanvasPattern {
     };
 
 }

Modified: trunk/Source/WebCore/html/canvas/CanvasRenderingContext.idl (106525 => 106526)


--- trunk/Source/WebCore/html/canvas/CanvasRenderingContext.idl	2012-02-02 02:46:10 UTC (rev 106525)
+++ trunk/Source/WebCore/html/canvas/CanvasRenderingContext.idl	2012-02-02 02:47:53 UTC (rev 106526)
@@ -28,9 +28,7 @@
     interface [
         CustomMarkFunction,
         GenerateIsReachable,
-        CustomToJS,
-        InterfaceUUID=98fb48ae-7216-489c-862b-8e1217fc4443,
-        ImplementationUUID=ab4f0781-152f-450e-9546-5b3987491a54
+        CustomToJS
     ] CanvasRenderingContext {
 
         readonly attribute HTMLCanvasElement canvas;

Modified: trunk/Source/WebCore/html/canvas/CanvasRenderingContext2D.idl (106525 => 106526)


--- trunk/Source/WebCore/html/canvas/CanvasRenderingContext2D.idl	2012-02-02 02:46:10 UTC (rev 106525)
+++ trunk/Source/WebCore/html/canvas/CanvasRenderingContext2D.idl	2012-02-02 02:47:53 UTC (rev 106526)
@@ -25,10 +25,7 @@
 
 module html {
 
-    interface [
-        InterfaceUUID=98fb48ae-7216-489c-862b-8e1217fc4443,
-        ImplementationUUID=ab4f0781-152f-450e-9546-5b3987491a54
-    ] CanvasRenderingContext2D : CanvasRenderingContext {
+    interface CanvasRenderingContext2D : CanvasRenderingContext {
 
         void save();
         void restore();

Modified: trunk/Source/WebCore/html/canvas/WebGLRenderingContext.idl (106525 => 106526)


--- trunk/Source/WebCore/html/canvas/WebGLRenderingContext.idl	2012-02-02 02:46:10 UTC (rev 106525)
+++ trunk/Source/WebCore/html/canvas/WebGLRenderingContext.idl	2012-02-02 02:47:53 UTC (rev 106526)
@@ -27,8 +27,6 @@
 
     interface [
         Conditional=WEBGL,
-        InterfaceUUID=98fb48ae-7216-489c-862b-8e1217fc4443,
-        ImplementationUUID=ab4f0781-152f-450e-9546-5b3987491a54,
         CustomMarkFunction,
         DontCheckEnums
     ] WebGLRenderingContext : CanvasRenderingContext {
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to