summaryrefslogtreecommitdiffstats
path: root/Source/WebCore/bindings/js
diff options
context:
space:
mode:
authorBen Murdoch <benm@google.com>2011-05-26 17:14:57 +0100
committerBen Murdoch <benm@google.com>2011-06-02 10:37:22 +0100
commit29ff867282a96b4576cf08af3afb776c582c9397 (patch)
treea236708b39b3680706c7e9808dd2c94010ca657d /Source/WebCore/bindings/js
parent98be889dd4fae67dbbdaa7d65a7113229e35529d (diff)
downloadexternal_webkit-29ff867282a96b4576cf08af3afb776c582c9397.zip
external_webkit-29ff867282a96b4576cf08af3afb776c582c9397.tar.gz
external_webkit-29ff867282a96b4576cf08af3afb776c582c9397.tar.bz2
Merge WebKit at r80534: Fix JSNavigatorCustom.cpp
InternalFunction::info has been renamed InternalFunction::s_info so update our code to reflect this. See http://trac.webkit.org/changeset/79132 Change-Id: I8118b513fcee8b1e8e9e53241e1b0507cf3df68b
Diffstat (limited to 'Source/WebCore/bindings/js')
-rw-r--r--Source/WebCore/bindings/js/JSNavigatorCustom.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/WebCore/bindings/js/JSNavigatorCustom.cpp b/Source/WebCore/bindings/js/JSNavigatorCustom.cpp
index a190b60..c8429ed 100644
--- a/Source/WebCore/bindings/js/JSNavigatorCustom.cpp
+++ b/Source/WebCore/bindings/js/JSNavigatorCustom.cpp
@@ -53,7 +53,7 @@ JSC::JSValue WebCore::JSNavigator::isApplicationInstalled(JSC::ExecState* exec)
return jsUndefined();
}
- if (!exec->argument(1).inherits(&InternalFunction::info)) {
+ if (!exec->argument(1).inherits(&InternalFunction::s_info)) {
setDOMException(exec, TYPE_MISMATCH_ERR);
return jsUndefined();
}