Remove [ImplementationUUID] and [InterfaceUUID] from html/canvas/*.idl
authorharaken@chromium.org <haraken@chromium.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Thu, 2 Feb 2012 02:47:53 +0000 (02:47 +0000)
committerharaken@chromium.org <haraken@chromium.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Thu, 2 Feb 2012 02:47:53 +0000 (02:47 +0000)
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:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106526 268f45cc-cd09-0410-ab3c-d52691b4dbfc

Source/WebCore/ChangeLog
Source/WebCore/html/canvas/CanvasGradient.idl
Source/WebCore/html/canvas/CanvasPattern.idl
Source/WebCore/html/canvas/CanvasRenderingContext.idl
Source/WebCore/html/canvas/CanvasRenderingContext2D.idl
Source/WebCore/html/canvas/WebGLRenderingContext.idl

index 656175c..a8f370b 100644 (file)
@@ -1,3 +1,22 @@
+2012-02-01  Kentaro Hara  <haraken@chromium.org>
+
+        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  <webkit.review.bot@gmail.com>
 
         Unreviewed, rolling out r106408.
index 48f75bb..75b1927 100644 (file)
 
 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)
index 1cac8f8..e5aa036 100644 (file)
 
 module html {
 
-    interface [
-        InterfaceUUID=c2131348-6d8c-47b5-86cc-d41aff34ce15,
-        ImplementationUUID=82f5d713-3d17-44dd-aa4a-7766fe345940
-    ] CanvasPattern {
-
+    interface CanvasPattern {
     };
 
 }
index b53bdce..d8657cc 100644 (file)
@@ -28,9 +28,7 @@ module html {
     interface [
         CustomMarkFunction,
         GenerateIsReachable,
-        CustomToJS,
-        InterfaceUUID=98fb48ae-7216-489c-862b-8e1217fc4443,
-        ImplementationUUID=ab4f0781-152f-450e-9546-5b3987491a54
+        CustomToJS
     ] CanvasRenderingContext {
 
         readonly attribute HTMLCanvasElement canvas;
index 0168e4c..d5845b8 100644 (file)
 
 module html {
 
-    interface [
-        InterfaceUUID=98fb48ae-7216-489c-862b-8e1217fc4443,
-        ImplementationUUID=ab4f0781-152f-450e-9546-5b3987491a54
-    ] CanvasRenderingContext2D : CanvasRenderingContext {
+    interface CanvasRenderingContext2D : CanvasRenderingContext {
 
         void save();
         void restore();
index 0c1700a..16aae17 100644 (file)
@@ -27,8 +27,6 @@ module html {
 
     interface [
         Conditional=WEBGL,
-        InterfaceUUID=98fb48ae-7216-489c-862b-8e1217fc4443,
-        ImplementationUUID=ab4f0781-152f-450e-9546-5b3987491a54,
         CustomMarkFunction,
         DontCheckEnums
     ] WebGLRenderingContext : CanvasRenderingContext {