Title: [105703] trunk/Source/WebCore
Revision
105703
Author
[email protected]
Date
2012-01-24 00:35:21 -0800 (Tue, 24 Jan 2012)

Log Message

Unreviewed build fix for GTK Debug build after r105698.

* bindings/js/JSNavigatorCustom.cpp:
(WebCore::JSNavigator::webkitGetUserMedia):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (105702 => 105703)


--- trunk/Source/WebCore/ChangeLog	2012-01-24 08:26:02 UTC (rev 105702)
+++ trunk/Source/WebCore/ChangeLog	2012-01-24 08:35:21 UTC (rev 105703)
@@ -1,3 +1,10 @@
+2012-01-24  Ilya Tikhonovsky  <[email protected]>
+
+        Unreviewed build fix for GTK Debug build after r105698.
+
+        * bindings/js/JSNavigatorCustom.cpp:
+        (WebCore::JSNavigator::webkitGetUserMedia):
+
 2012-01-23  Scott Graham  <[email protected]>
 
         Avoid spurious rebuilds on vs2010 due to DerivedSources not existing

Modified: trunk/Source/WebCore/bindings/js/JSNavigatorCustom.cpp (105702 => 105703)


--- trunk/Source/WebCore/bindings/js/JSNavigatorCustom.cpp	2012-01-24 08:26:02 UTC (rev 105702)
+++ trunk/Source/WebCore/bindings/js/JSNavigatorCustom.cpp	2012-01-24 08:35:21 UTC (rev 105703)
@@ -38,7 +38,7 @@
 {
     // Arguments: Options, successCallback, (optional)errorCallback
 
-    String options = ustringToString(exec->argument(0).toString(exec));
+    String options = ustringToString(exec->argument(0).toString(exec)->value(exec));
     if (exec->hadException())
         return jsUndefined();
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to