Title: [120309] trunk/Source/WebCore
Revision
120309
Author
[email protected]
Date
2012-06-14 03:27:18 -0700 (Thu, 14 Jun 2012)

Log Message

Fix a typo in r120304.
https://bugs.webkit.org/show_bug.cgi?id=89070

* bindings/scripts/CodeGeneratorV8.pm:
(NativeToJSValue):
* bindings/scripts/test/V8/V8TestObj.cpp:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (120308 => 120309)


--- trunk/Source/WebCore/ChangeLog	2012-06-14 10:20:51 UTC (rev 120308)
+++ trunk/Source/WebCore/ChangeLog	2012-06-14 10:27:18 UTC (rev 120309)
@@ -1,3 +1,12 @@
+2012-06-14  Kent Tamura  <[email protected]>
+
+        Fix a typo in r120304.
+        https://bugs.webkit.org/show_bug.cgi?id=89070
+
+        * bindings/scripts/CodeGeneratorV8.pm:
+        (NativeToJSValue):
+        * bindings/scripts/test/V8/V8TestObj.cpp:
+
 2012-06-14  David Barr  <[email protected]>
 
         Add dpcm to css3-images image-resolution

Modified: trunk/Source/WebCore/bindings/scripts/CodeGeneratorV8.pm (120308 => 120309)


--- trunk/Source/WebCore/bindings/scripts/CodeGeneratorV8.pm	2012-06-14 10:20:51 UTC (rev 120308)
+++ trunk/Source/WebCore/bindings/scripts/CodeGeneratorV8.pm	2012-06-14 10:27:18 UTC (rev 120309)
@@ -3867,7 +3867,7 @@
     if ($arrayType) {
         if ($type eq "DOMString[]") {
             AddToImplIncludes("V8DOMStringList.h");
-            AddToImplIncludes("DOMStrignList.h");
+            AddToImplIncludes("DOMStringList.h");
         } elsif (!$codeGenerator->SkipIncludeHeader($arrayType)) {
             AddToImplIncludes("V8$arrayType.h");
             AddToImplIncludes("$arrayType.h");

Modified: trunk/Source/WebCore/bindings/scripts/test/V8/V8TestObj.cpp (120308 => 120309)


--- trunk/Source/WebCore/bindings/scripts/test/V8/V8TestObj.cpp	2012-06-14 10:20:51 UTC (rev 120308)
+++ trunk/Source/WebCore/bindings/scripts/test/V8/V8TestObj.cpp	2012-06-14 10:27:18 UTC (rev 120309)
@@ -22,7 +22,7 @@
 #include "V8TestObj.h"
 
 #include "ContextFeatures.h"
-#include "DOMStrignList.h"
+#include "DOMStringList.h"
 #include "Dictionary.h"
 #include "ExceptionCode.h"
 #include "HTMLNames.h"
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to