summaryrefslogtreecommitdiffstats
path: root/WebCore/bindings/js
diff options
context:
space:
mode:
authorSteve Block <steveblock@google.com>2010-04-28 16:47:26 +0100
committerSteve Block <steveblock@google.com>2010-05-11 14:42:13 +0100
commit98be84cc0473aaefc551ded18abd6c40bd108a8c (patch)
treebf054327511429ff872adaf6a343e5217c2eacb2 /WebCore/bindings/js
parent3b676932fc83bc9a3e8872fe42c2e64520ec5942 (diff)
downloadexternal_webkit-98be84cc0473aaefc551ded18abd6c40bd108a8c.zip
external_webkit-98be84cc0473aaefc551ded18abd6c40bd108a8c.tar.gz
external_webkit-98be84cc0473aaefc551ded18abd6c40bd108a8c.tar.bz2
Merge webkit.org at r58033 : Use ustringToString()
See http://trac.webkit.org/changeset/57738 Change-Id: I1d10e7858488f40013bffa3e8f8339db7fff7de0
Diffstat (limited to 'WebCore/bindings/js')
-rw-r--r--WebCore/bindings/js/JSNavigatorCustom.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/WebCore/bindings/js/JSNavigatorCustom.cpp b/WebCore/bindings/js/JSNavigatorCustom.cpp
index af0c9ae..e33fd78 100644
--- a/WebCore/bindings/js/JSNavigatorCustom.cpp
+++ b/WebCore/bindings/js/JSNavigatorCustom.cpp
@@ -58,7 +58,7 @@ JSC::JSValue WebCore::JSNavigator::isApplicationInstalled(JSC::ExecState* exec,
return jsUndefined();
}
- String appName = args.at(0).toString(exec);
+ String appName = ustringToString(args.at(0).toString(exec));
JSObject* object;
if (!(object = args.at(1).getObject())) {