tizen beta release
[framework/web/webkit-efl.git] / DerivedSources / WebCore / JSWebKitMutationObserver.h
1 /*
2     This file is part of the WebKit open source project.
3     This file has been generated by generate-bindings.pl. DO NOT MODIFY!
4
5     This library is free software; you can redistribute it and/or
6     modify it under the terms of the GNU Library General Public
7     License as published by the Free Software Foundation; either
8     version 2 of the License, or (at your option) any later version.
9
10     This library is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13     Library General Public License for more details.
14
15     You should have received a copy of the GNU Library General Public License
16     along with this library; see the file COPYING.LIB.  If not, write to
17     the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18     Boston, MA 02110-1301, USA.
19 */
20
21 #ifndef JSWebKitMutationObserver_h
22 #define JSWebKitMutationObserver_h
23
24 #if ENABLE(MUTATION_OBSERVERS)
25
26 #include "JSDOMBinding.h"
27 #include "WebKitMutationObserver.h"
28 #include <runtime/JSGlobalObject.h>
29 #include <runtime/JSObject.h>
30 #include <runtime/ObjectPrototype.h>
31
32 namespace WebCore {
33
34 class JSWebKitMutationObserver : public JSDOMWrapper {
35 public:
36     typedef JSDOMWrapper Base;
37     static JSWebKitMutationObserver* create(JSC::Structure* structure, JSDOMGlobalObject* globalObject, PassRefPtr<WebKitMutationObserver> impl)
38     {
39         JSWebKitMutationObserver* ptr = new (JSC::allocateCell<JSWebKitMutationObserver>(globalObject->globalData().heap)) JSWebKitMutationObserver(structure, globalObject, impl);
40         ptr->finishCreation(globalObject->globalData());
41         return ptr;
42     }
43
44     static JSC::JSObject* createPrototype(JSC::ExecState*, JSC::JSGlobalObject*);
45     static bool getOwnPropertySlot(JSC::JSCell*, JSC::ExecState*, const JSC::Identifier& propertyName, JSC::PropertySlot&);
46     static bool getOwnPropertyDescriptor(JSC::JSObject*, JSC::ExecState*, const JSC::Identifier& propertyName, JSC::PropertyDescriptor&);
47     static const JSC::ClassInfo s_info;
48
49     static JSC::Structure* createStructure(JSC::JSGlobalData& globalData, JSC::JSGlobalObject* globalObject, JSC::JSValue prototype)
50     {
51         return JSC::Structure::create(globalData, globalObject, prototype, JSC::TypeInfo(JSC::ObjectType, StructureFlags), &s_info);
52     }
53
54     static JSC::JSValue getConstructor(JSC::ExecState*, JSC::JSGlobalObject*);
55
56     // Custom functions
57     JSC::JSValue observe(JSC::ExecState*);
58     WebKitMutationObserver* impl() const { return m_impl; }
59     void releaseImpl() { m_impl->deref(); m_impl = 0; }
60
61 private:
62     WebKitMutationObserver* m_impl;
63 protected:
64     JSWebKitMutationObserver(JSC::Structure*, JSDOMGlobalObject*, PassRefPtr<WebKitMutationObserver>);
65     void finishCreation(JSC::JSGlobalData&);
66     static const unsigned StructureFlags = JSC::OverridesGetOwnPropertySlot | Base::StructureFlags;
67 };
68
69 class JSWebKitMutationObserverOwner : public JSC::WeakHandleOwner {
70     virtual bool isReachableFromOpaqueRoots(JSC::Handle<JSC::Unknown>, void* context, JSC::SlotVisitor&);
71     virtual void finalize(JSC::Handle<JSC::Unknown>, void* context);
72 };
73
74 inline JSC::WeakHandleOwner* wrapperOwner(DOMWrapperWorld*, WebKitMutationObserver*)
75 {
76     DEFINE_STATIC_LOCAL(JSWebKitMutationObserverOwner, jsWebKitMutationObserverOwner, ());
77     return &jsWebKitMutationObserverOwner;
78 }
79
80 inline void* wrapperContext(DOMWrapperWorld* world, WebKitMutationObserver*)
81 {
82     return world;
83 }
84
85 JSC::JSValue toJS(JSC::ExecState*, JSDOMGlobalObject*, WebKitMutationObserver*);
86 WebKitMutationObserver* toWebKitMutationObserver(JSC::JSValue);
87
88 class JSWebKitMutationObserverPrototype : public JSC::JSNonFinalObject {
89 public:
90     typedef JSC::JSNonFinalObject Base;
91     static JSC::JSObject* self(JSC::ExecState*, JSC::JSGlobalObject*);
92     static JSWebKitMutationObserverPrototype* create(JSC::JSGlobalData& globalData, JSC::JSGlobalObject* globalObject, JSC::Structure* structure)
93     {
94         JSWebKitMutationObserverPrototype* ptr = new (JSC::allocateCell<JSWebKitMutationObserverPrototype>(globalData.heap)) JSWebKitMutationObserverPrototype(globalData, globalObject, structure);
95         ptr->finishCreation(globalData);
96         return ptr;
97     }
98
99     static const JSC::ClassInfo s_info;
100     static bool getOwnPropertySlot(JSC::JSCell*, JSC::ExecState*, const JSC::Identifier&, JSC::PropertySlot&);
101     static bool getOwnPropertyDescriptor(JSC::JSObject*, JSC::ExecState*, const JSC::Identifier&, JSC::PropertyDescriptor&);
102     static JSC::Structure* createStructure(JSC::JSGlobalData& globalData, JSC::JSGlobalObject* globalObject, JSC::JSValue prototype)
103     {
104         return JSC::Structure::create(globalData, globalObject, prototype, JSC::TypeInfo(JSC::ObjectType, StructureFlags), &s_info);
105     }
106
107 private:
108     JSWebKitMutationObserverPrototype(JSC::JSGlobalData& globalData, JSC::JSGlobalObject*, JSC::Structure* structure) : JSC::JSNonFinalObject(globalData, structure) { }
109 protected:
110     static const unsigned StructureFlags = JSC::OverridesGetOwnPropertySlot | Base::StructureFlags;
111 };
112
113 class JSWebKitMutationObserverConstructor : public DOMConstructorObject {
114 private:
115     JSWebKitMutationObserverConstructor(JSC::Structure*, JSDOMGlobalObject*);
116     void finishCreation(JSC::ExecState*, JSDOMGlobalObject*);
117
118 public:
119     typedef DOMConstructorObject Base;
120     static JSWebKitMutationObserverConstructor* create(JSC::ExecState* exec, JSC::Structure* structure, JSDOMGlobalObject* globalObject)
121     {
122         JSWebKitMutationObserverConstructor* ptr = new (JSC::allocateCell<JSWebKitMutationObserverConstructor>(*exec->heap())) JSWebKitMutationObserverConstructor(structure, globalObject);
123         ptr->finishCreation(exec, globalObject);
124         return ptr;
125     }
126
127     static bool getOwnPropertySlot(JSC::JSCell*, JSC::ExecState*, const JSC::Identifier&, JSC::PropertySlot&);
128     static bool getOwnPropertyDescriptor(JSC::JSObject*, JSC::ExecState*, const JSC::Identifier&, JSC::PropertyDescriptor&);
129     static const JSC::ClassInfo s_info;
130     static JSC::Structure* createStructure(JSC::JSGlobalData& globalData, JSC::JSGlobalObject* globalObject, JSC::JSValue prototype)
131     {
132         return JSC::Structure::create(globalData, globalObject, prototype, JSC::TypeInfo(JSC::ObjectType, StructureFlags), &s_info);
133     }
134 protected:
135     static const unsigned StructureFlags = JSC::OverridesGetOwnPropertySlot | JSC::ImplementsHasInstance | DOMConstructorObject::StructureFlags;
136     static JSC::EncodedJSValue JSC_HOST_CALL constructJSWebKitMutationObserver(JSC::ExecState*);
137     static JSC::ConstructType getConstructData(JSC::JSCell*, JSC::ConstructData&);
138 };
139
140 // Functions
141
142 JSC::EncodedJSValue JSC_HOST_CALL jsWebKitMutationObserverPrototypeFunctionObserve(JSC::ExecState*);
143 JSC::EncodedJSValue JSC_HOST_CALL jsWebKitMutationObserverPrototypeFunctionDisconnect(JSC::ExecState*);
144 // Attributes
145
146 JSC::JSValue jsWebKitMutationObserverConstructor(JSC::ExecState*, JSC::JSValue, const JSC::Identifier&);
147
148 } // namespace WebCore
149
150 #endif // ENABLE(MUTATION_OBSERVERS)
151
152 #endif