~ubuntu-branches/ubuntu/karmic/webkit/karmic-proposed

« back to all changes in this revision

Viewing changes to WebCore/bindings/js/JSCustomPositionCallback.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Gustavo Noronha Silva
  • Date: 2009-05-15 18:30:58 UTC
  • mfrom: (1.1.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20090515183058-50q5exjo9b1kxy9s
Tags: 1.1.7-1
* New upstream release
* debian/libwebkit-1.0-2.symbols:
- updated with the new symbols in 1.1.7
* debian/libwebkit-dev.install, debian/libwebkit-dev.links,
  debian/rules:
- Build, and ship gtk-doc documentation (Closes: #526683)
* debian/copyright:
- updated.

Show diffs side-by-side

added added

removed removed

Lines of Context:
54
54
    
55
55
    JSC::JSLock lock(false);
56
56
    
57
 
    JSValuePtr function = m_callback->get(exec, Identifier(exec, "handleEvent"));
 
57
    JSValue function = m_callback->get(exec, Identifier(exec, "handleEvent"));
58
58
    CallData callData;
59
59
    CallType callType = function.getCallData(callData);
60
60
    if (callType == CallTypeNone) {
68
68
    
69
69
    RefPtr<JSCustomPositionCallback> protect(this);
70
70
    
71
 
    ArgList args;
 
71
    MarkedArgumentBuffer args;
72
72
    args.append(toJS(exec, geoposition));
73
73
    
74
74
    globalObject->globalData()->timeoutChecker.start();