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

« back to all changes in this revision

Viewing changes to WebCore/bindings/js/ScheduledAction.h

  • 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:
45
45
        void execute(ScriptExecutionContext*);
46
46
 
47
47
    private:
48
 
        ScheduledAction(JSC::ExecState* exec, JSC::JSValuePtr function, const JSC::ArgList&);
 
48
        ScheduledAction(JSC::JSValue function, const JSC::ArgList&);
49
49
        ScheduledAction(const String& code)
50
50
            : m_code(code)
51
51
        {
52
52
        }
53
53
 
54
 
        void executeFunctionInContext(JSC::JSGlobalObject*, JSC::JSValuePtr thisValue);
 
54
        void executeFunctionInContext(JSC::JSGlobalObject*, JSC::JSValue thisValue);
55
55
        void execute(Document*);
56
56
#if ENABLE(WORKERS)        
57
57
        void execute(WorkerContext*);
58
58
#endif
59
59
 
60
 
        JSC::ProtectedJSValuePtr m_function;
61
 
        Vector<JSC::ProtectedJSValuePtr> m_args;
 
60
        JSC::ProtectedJSValue m_function;
 
61
        Vector<JSC::ProtectedJSValue> m_args;
62
62
        String m_code;
63
63
    };
64
64