Title: [145060] trunk/Source/WebCore
Revision
145060
Author
hara...@chromium.org
Date
2013-03-07 03:43:54 -0800 (Thu, 07 Mar 2013)

Log Message

Unreviewed. Rebaselined run-bindings-tests.

* bindings/scripts/test/V8/V8TestInterface.cpp:
(WebCore):
* bindings/scripts/test/V8/V8TestObj.cpp:
(WebCore):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (145059 => 145060)


--- trunk/Source/WebCore/ChangeLog	2013-03-07 11:19:30 UTC (rev 145059)
+++ trunk/Source/WebCore/ChangeLog	2013-03-07 11:43:54 UTC (rev 145060)
@@ -1,3 +1,12 @@
+2013-03-07  Kentaro Hara  <hara...@chromium.org>
+
+        Unreviewed. Rebaselined run-bindings-tests.
+
+        * bindings/scripts/test/V8/V8TestInterface.cpp:
+        (WebCore):
+        * bindings/scripts/test/V8/V8TestObj.cpp:
+        (WebCore):
+
 2013-03-07  Takashi Sakamoto  <ta...@google.com>
 
         [Refactoring] Implement RuleCollector

Modified: trunk/Source/WebCore/bindings/scripts/test/V8/V8TestInterface.cpp (145059 => 145060)


--- trunk/Source/WebCore/bindings/scripts/test/V8/V8TestInterface.cpp	2013-03-07 11:19:30 UTC (rev 145059)
+++ trunk/Source/WebCore/bindings/scripts/test/V8/V8TestInterface.cpp	2013-03-07 11:43:54 UTC (rev 145060)
@@ -392,10 +392,10 @@
 
 static const V8DOMConfiguration::BatchedConstant V8TestInterfaceConsts[] = {
 #if ENABLE(Condition11) || ENABLE(Condition12)
-    {"SUPPLEMENTALCONSTANT1", static_cast<signed int>(1)},
+    {"SUPPLEMENTALCONSTANT1", 1},
 #endif
 #if ENABLE(Condition11) || ENABLE(Condition12)
-    {"SUPPLEMENTALCONSTANT2", static_cast<signed int>(2)},
+    {"SUPPLEMENTALCONSTANT2", 2},
 #endif
 };
 

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


--- trunk/Source/WebCore/bindings/scripts/test/V8/V8TestObj.cpp	2013-03-07 11:19:30 UTC (rev 145059)
+++ trunk/Source/WebCore/bindings/scripts/test/V8/V8TestObj.cpp	2013-03-07 11:43:54 UTC (rev 145060)
@@ -2988,20 +2988,20 @@
 
 static const V8DOMConfiguration::BatchedConstant V8TestObjConsts[] = {
 #if ENABLE(Condition1)
-    {"CONDITIONAL_CONST", static_cast<signed int>(0)},
+    {"CONDITIONAL_CONST", 0},
 #endif
-    {"CONST_VALUE_0", static_cast<signed int>(0)},
-    {"CONST_VALUE_1", static_cast<signed int>(1)},
-    {"CONST_VALUE_2", static_cast<signed int>(2)},
-    {"CONST_VALUE_4", static_cast<signed int>(4)},
-    {"CONST_VALUE_8", static_cast<signed int>(8)},
-    {"CONST_VALUE_9", static_cast<signed int>(-1)},
-    {"CONST_VALUE_10", static_cast<signed int>("my constant string")},
-    {"CONST_VALUE_11", static_cast<signed int>(0xffffffff)},
-    {"CONST_VALUE_12", static_cast<signed int>(0x01)},
-    {"CONST_VALUE_13", static_cast<signed int>(0X20)},
-    {"CONST_VALUE_14", static_cast<signed int>(0x1abc)},
-    {"CONST_JAVASCRIPT", static_cast<signed int>(15)},
+    {"CONST_VALUE_0", 0},
+    {"CONST_VALUE_1", 1},
+    {"CONST_VALUE_2", 2},
+    {"CONST_VALUE_4", 4},
+    {"CONST_VALUE_8", 8},
+    {"CONST_VALUE_9", -1},
+    {"CONST_VALUE_10", "my constant string"},
+    {"CONST_VALUE_11", -1},
+    {"CONST_VALUE_12", 1},
+    {"CONST_VALUE_13", 0X20},
+    {"CONST_VALUE_14", 6844},
+    {"CONST_JAVASCRIPT", 15},
 };
 
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to