summaryrefslogtreecommitdiffstats
path: root/WebCore/bindings
diff options
context:
space:
mode:
authorLeon Clarke <leonclarke@google.com>2010-06-03 16:54:06 +0100
committerLeon Clarke <leonclarke@google.com>2010-06-08 12:24:52 +0100
commit359e3e1782e0eba605f938bf8e431db585f1b66c (patch)
tree23d2e9030ed7c51ee1a14564cf0846c9edfa5d09 /WebCore/bindings
parenta58d6cc59a0274db6e53b192c835c680f14526c5 (diff)
downloadexternal_webkit-359e3e1782e0eba605f938bf8e431db585f1b66c.zip
external_webkit-359e3e1782e0eba605f938bf8e431db585f1b66c.tar.gz
external_webkit-359e3e1782e0eba605f938bf8e431db585f1b66c.tar.bz2
Merge webkit.org at r60469 : invokeCallback takes a ScriptExecutionContext following @60330
http://trac.webkit.org/changeset/60330 Change-Id: I92e05b09e6cfc1703759b2c351e341a44b5eab0c
Diffstat (limited to 'WebCore/bindings')
-rw-r--r--WebCore/bindings/v8/custom/V8CustomApplicationInstalledCallback.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/WebCore/bindings/v8/custom/V8CustomApplicationInstalledCallback.cpp b/WebCore/bindings/v8/custom/V8CustomApplicationInstalledCallback.cpp
index af57b15..4cef919 100644
--- a/WebCore/bindings/v8/custom/V8CustomApplicationInstalledCallback.cpp
+++ b/WebCore/bindings/v8/custom/V8CustomApplicationInstalledCallback.cpp
@@ -62,7 +62,7 @@ void V8CustomApplicationInstalledCallback::handleEvent(bool isInstalled)
RefPtr<Frame> protector(m_frame);
bool callbackReturnValue = false;
- invokeCallback(m_callback, 1, argv, callbackReturnValue);
+ invokeCallback(m_callback, 1, argv, callbackReturnValue, m_frame->document());
}
} // namespace WebCore