Title: [108638] trunk/Source/WebCore
Revision
108638
Author
a...@chromium.org
Date
2012-02-23 10:15:49 -0800 (Thu, 23 Feb 2012)

Log Message

Unreviewed. Rebaseline binding test files.

* bindings/scripts/test/GObject/WebKitDOMTestInterface.cpp:
(webkit_dom_test_interface_supplemental_method1):
(webkit_dom_test_interface_supplemental_method2):
(webkit_dom_test_interface_get_supplemental_str1):
(webkit_dom_test_interface_get_supplemental_str2):
(webkit_dom_test_interface_set_supplemental_str2):
(webkit_dom_test_interface_get_supplemental_node):
(webkit_dom_test_interface_set_supplemental_node):
(webkit_dom_test_interface_set_property):
(webkit_dom_test_interface_get_property):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (108637 => 108638)


--- trunk/Source/WebCore/ChangeLog	2012-02-23 18:10:27 UTC (rev 108637)
+++ trunk/Source/WebCore/ChangeLog	2012-02-23 18:15:49 UTC (rev 108638)
@@ -1,3 +1,18 @@
+2012-02-23  Erik Arvidsson  <a...@chromium.org>
+
+        Unreviewed. Rebaseline binding test files.
+
+        * bindings/scripts/test/GObject/WebKitDOMTestInterface.cpp:
+        (webkit_dom_test_interface_supplemental_method1):
+        (webkit_dom_test_interface_supplemental_method2):
+        (webkit_dom_test_interface_get_supplemental_str1):
+        (webkit_dom_test_interface_get_supplemental_str2):
+        (webkit_dom_test_interface_set_supplemental_str2):
+        (webkit_dom_test_interface_get_supplemental_node):
+        (webkit_dom_test_interface_set_supplemental_node):
+        (webkit_dom_test_interface_set_property):
+        (webkit_dom_test_interface_get_property):
+
 2012-02-23  Anders Carlsson  <ander...@apple.com>
 
         Crash in ScrollElasticityController::snapRubberBandTimerFired()

Modified: trunk/Source/WebCore/bindings/scripts/test/GObject/WebKitDOMTestInterface.cpp (108637 => 108638)


--- trunk/Source/WebCore/bindings/scripts/test/GObject/WebKitDOMTestInterface.cpp	2012-02-23 18:10:27 UTC (rev 108637)
+++ trunk/Source/WebCore/bindings/scripts/test/GObject/WebKitDOMTestInterface.cpp	2012-02-23 18:15:49 UTC (rev 108638)
@@ -65,7 +65,7 @@
     g_return_if_fail(self);
     WebCore::JSMainThreadNullState state;
     WebCore::TestInterface * item = WebKit::core(self);
-    TestSupplemental::supplementalMethod1(item);
+    WebCore::TestSupplemental::supplementalMethod1(item);
 #endif /* ENABLE(Condition11) || ENABLE(Condition12) */
 }
 
@@ -85,7 +85,7 @@
         g_return_val_if_fail(converted_obj_arg, 0);
     }
     WebCore::ExceptionCode ec = 0;
-    PassRefPtr<WebCore::TestObj> g_res = WTF::getPtr(TestSupplemental::supplementalMethod2(item, converted_str_arg, converted_obj_arg, ec));
+    PassRefPtr<WebCore::TestObj> g_res = WTF::getPtr(WebCore::TestSupplemental::supplementalMethod2(item, converted_str_arg, converted_obj_arg, ec));
     if (ec) {
         WebCore::ExceptionCodeDescription ecdesc(ec);
         g_set_error_literal(error, g_quark_from_string("WEBKIT_DOM"), ecdesc.code, ecdesc.name);
@@ -104,7 +104,7 @@
     g_return_val_if_fail(self, 0);
     WebCore::JSMainThreadNullState state;
     WebCore::TestInterface * item = WebKit::core(self);
-    gchar* res = convertToUTF8String(TestSupplemental::supplementalStr1(item));
+    gchar* res = convertToUTF8String(WebCore::TestSupplemental::supplementalStr1(item));
     return res;
 #else
     return NULL;
@@ -118,7 +118,7 @@
     g_return_val_if_fail(self, 0);
     WebCore::JSMainThreadNullState state;
     WebCore::TestInterface * item = WebKit::core(self);
-    gchar* res = convertToUTF8String(TestSupplemental::supplementalStr2(item));
+    gchar* res = convertToUTF8String(WebCore::TestSupplemental::supplementalStr2(item));
     return res;
 #else
     return NULL;
@@ -134,7 +134,7 @@
     WebCore::TestInterface * item = WebKit::core(self);
     g_return_if_fail(value);
     WTF::String converted_value = WTF::String::fromUTF8(value);
-    TestSupplemental::setSupplementalStr2(item, converted_value);
+    WebCore::TestSupplemental::setSupplementalStr2(item, converted_value);
 #endif /* ENABLE(Condition11) || ENABLE(Condition12) */
 }
 
@@ -145,7 +145,7 @@
     g_return_val_if_fail(self, 0);
     WebCore::JSMainThreadNullState state;
     WebCore::TestInterface * item = WebKit::core(self);
-    PassRefPtr<WebCore::Node> g_res = WTF::getPtr(TestSupplemental::supplementalNode(item));
+    PassRefPtr<WebCore::Node> g_res = WTF::getPtr(WebCore::TestSupplemental::supplementalNode(item));
     WebKitDOMNode* res = WebKit::kit(g_res.get());
     return res;
 #else
@@ -166,7 +166,7 @@
         converted_value = WebKit::core(value);
         g_return_if_fail(converted_value);
     }
-    TestSupplemental::setSupplementalNode(item, converted_value);
+    WebCore::TestSupplemental::setSupplementalNode(item, converted_value);
 #endif /* ENABLE(Condition11) || ENABLE(Condition12) */
 }
 
@@ -225,7 +225,7 @@
 #if ENABLE(Condition11) || ENABLE(Condition12)
     case PROP_SUPPLEMENTAL_STR2:
     {
-        TestSupplemental::setSupplementalStr2(coreSelf, WTF::String::fromUTF8(g_value_get_string(value)));
+        WebCore::TestSupplemental::setSupplementalStr2(coreSelf, WTF::String::fromUTF8(g_value_get_string(value)));
         break;
     }
 #endif /* ENABLE(Condition11) || ENABLE(Condition12) */
@@ -245,21 +245,21 @@
 #if ENABLE(Condition11) || ENABLE(Condition12)
     case PROP_SUPPLEMENTAL_STR1:
     {
-        g_value_take_string(value, convertToUTF8String(TestSupplemental::supplementalStr1(coreSelf)));
+        g_value_take_string(value, convertToUTF8String(WebCore::TestSupplemental::supplementalStr1(coreSelf)));
         break;
     }
 #endif /* ENABLE(Condition11) || ENABLE(Condition12) */
 #if ENABLE(Condition11) || ENABLE(Condition12)
     case PROP_SUPPLEMENTAL_STR2:
     {
-        g_value_take_string(value, convertToUTF8String(TestSupplemental::supplementalStr2(coreSelf)));
+        g_value_take_string(value, convertToUTF8String(WebCore::TestSupplemental::supplementalStr2(coreSelf)));
         break;
     }
 #endif /* ENABLE(Condition11) || ENABLE(Condition12) */
 #if ENABLE(Condition11) || ENABLE(Condition12)
     case PROP_SUPPLEMENTAL_NODE:
     {
-        RefPtr<WebCore::Node> ptr = TestSupplemental::supplementalNode(coreSelf);
+        RefPtr<WebCore::Node> ptr = WebCore::TestSupplemental::supplementalNode(coreSelf);
         g_value_set_object(value, WebKit::kit(ptr.get()));
         break;
     }
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to