Unreviewed build fix for GTK after r105698.
authormario@webkit.org <mario@webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Tue, 24 Jan 2012 10:17:02 +0000 (10:17 +0000)
committermario@webkit.org <mario@webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Tue, 24 Jan 2012 10:17:02 +0000 (10:17 +0000)
* bindings/js/JSPeerConnectionCustom.cpp:
(WebCore::JSPeerConnectionConstructor::constructJSPeerConnection):

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

Source/WebCore/ChangeLog
Source/WebCore/bindings/js/JSPeerConnectionCustom.cpp

index f49c305..92fe5f1 100644 (file)
@@ -1,3 +1,10 @@
+2012-01-24  Mario Sanchez Prada  <msanchez@igalia.com>
+
+        Unreviewed build fix for GTK after r105698.
+
+        * bindings/js/JSPeerConnectionCustom.cpp:
+        (WebCore::JSPeerConnectionConstructor::constructJSPeerConnection):
+
 2012-01-24  Kent Tamura  <tkent@chromium.org>
 
         Fix build erros on Mac by r105706.
index d1c581a..df37f91 100644 (file)
@@ -48,7 +48,7 @@ EncodedJSValue JSC_HOST_CALL JSPeerConnectionConstructor::constructJSPeerConnect
     if (exec->argumentCount() < 2)
         return throwVMError(exec, createTypeError(exec, "Not enough arguments"));
 
-    String serverConfiguration = ustringToString(exec->argument(0).toString(exec));
+    String serverConfiguration = ustringToString(exec->argument(0).toString(exec)->value(exec));
     if (exec->hadException())
         return JSValue::encode(JSValue());