Title: [134798] trunk/Source/WebCore
Revision
134798
Author
[email protected]
Date
2012-11-15 10:56:17 -0800 (Thu, 15 Nov 2012)

Log Message

Correct syntax of old-style IDL files
https://bugs.webkit.org/show_bug.cgi?id=102335

Reviewed by Adam Barth.

Recently tasak@ corrected an IDL syntax of almost all IDL files.
We should correct the rest of them.

No tests. No change in behavior.

* html/canvas/OESElementIndexUint.idl:
* page/PerformanceMark.idl:
* page/PerformanceMeasure.idl:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (134797 => 134798)


--- trunk/Source/WebCore/ChangeLog	2012-11-15 18:53:20 UTC (rev 134797)
+++ trunk/Source/WebCore/ChangeLog	2012-11-15 18:56:17 UTC (rev 134798)
@@ -1,3 +1,19 @@
+2012-11-15  Kentaro Hara  <[email protected]>
+
+        Correct syntax of old-style IDL files
+        https://bugs.webkit.org/show_bug.cgi?id=102335
+
+        Reviewed by Adam Barth.
+
+        Recently tasak@ corrected an IDL syntax of almost all IDL files.
+        We should correct the rest of them.
+
+        No tests. No change in behavior.
+
+        * html/canvas/OESElementIndexUint.idl:
+        * page/PerformanceMark.idl:
+        * page/PerformanceMeasure.idl:
+
 2012-11-15  Elliott Sprehn  <[email protected]>
 
         Remove isHTMLInputElement since it's unused and toInputElement exists 

Modified: trunk/Source/WebCore/html/canvas/OESElementIndexUint.idl (134797 => 134798)


--- trunk/Source/WebCore/html/canvas/OESElementIndexUint.idl	2012-11-15 18:53:20 UTC (rev 134797)
+++ trunk/Source/WebCore/html/canvas/OESElementIndexUint.idl	2012-11-15 18:56:17 UTC (rev 134798)
@@ -23,11 +23,9 @@
  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */
 
-module html {
-    interface [
-        Conditional=WEBGL,
-        JSGenerateIsReachable=ImplContext,
-        OmitConstructor
-    ] OESElementIndexUint {
-    };
-}
+[
+    Conditional=WEBGL,
+    JSGenerateIsReachable=ImplContext,
+    OmitConstructor
+] interface OESElementIndexUint {
+};

Modified: trunk/Source/WebCore/page/PerformanceMark.idl (134797 => 134798)


--- trunk/Source/WebCore/page/PerformanceMark.idl	2012-11-15 18:53:20 UTC (rev 134797)
+++ trunk/Source/WebCore/page/PerformanceMark.idl	2012-11-15 18:56:17 UTC (rev 134798)
@@ -23,11 +23,8 @@
  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */
 
-module window {
-
-    interface [
-        Conditional=USER_TIMING,
-        OmitConstructor
-    ] PerformanceMark : PerformanceEntry {
-    };
-}
+[
+    Conditional=USER_TIMING,
+    OmitConstructor
+] interface PerformanceMark : PerformanceEntry {
+};

Modified: trunk/Source/WebCore/page/PerformanceMeasure.idl (134797 => 134798)


--- trunk/Source/WebCore/page/PerformanceMeasure.idl	2012-11-15 18:53:20 UTC (rev 134797)
+++ trunk/Source/WebCore/page/PerformanceMeasure.idl	2012-11-15 18:56:17 UTC (rev 134798)
@@ -23,11 +23,8 @@
  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */
 
-module window {
-
-    interface [
-        Conditional=USER_TIMING,
-        OmitConstructor
-    ] PerformanceMeasure : PerformanceEntry {
-    };
-}
+[
+    Conditional=USER_TIMING,
+    OmitConstructor
+] interface PerformanceMeasure : PerformanceEntry {
+};
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to