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

« back to all changes in this revision

Viewing changes to WebCore/bindings/js/JSCustomSQLTransactionCallback.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:
29
29
#include "config.h"
30
30
#include "JSCustomSQLTransactionCallback.h"
31
31
 
 
32
#if ENABLE(DATABASE)
 
33
 
32
34
#include "Frame.h"
33
35
#include "ScriptController.h"
34
36
#include "JSSQLTransaction.h"
98
100
        
99
101
    JSC::JSLock lock(false);
100
102
        
101
 
    JSValuePtr handleEventFunction = m_data->callback()->get(exec, Identifier(exec, "handleEvent"));
 
103
    JSValue handleEventFunction = m_data->callback()->get(exec, Identifier(exec, "handleEvent"));
102
104
    CallData handleEventCallData;
103
105
    CallType handleEventCallType = handleEventFunction.getCallData(handleEventCallData);
104
106
    CallData callbackCallData;
114
116
        
115
117
    RefPtr<JSCustomSQLTransactionCallback> protect(this);
116
118
        
117
 
    ArgList args;
 
119
    MarkedArgumentBuffer args;
118
120
    args.append(toJS(exec, transaction));
119
121
 
120
122
    globalObject->globalData()->timeoutChecker.start();
134
136
}
135
137
    
136
138
}
 
139
 
 
140
#endif // ENABLE(DATABASE)