tizen beta release
[profile/ivi/webkit-efl.git] / DerivedSources / WebCore / JSAudioDestinationNode.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 JSAudioDestinationNode_h
22 #define JSAudioDestinationNode_h
23
24 #if ENABLE(WEB_AUDIO)
25
26 #include "AudioDestinationNode.h"
27 #include "JSAudioNode.h"
28 #include "JSDOMBinding.h"
29 #include <runtime/JSObject.h>
30
31 namespace WebCore {
32
33 class JSAudioDestinationNode : public JSAudioNode {
34 public:
35     typedef JSAudioNode Base;
36     static JSAudioDestinationNode* create(JSC::Structure* structure, JSDOMGlobalObject* globalObject, PassRefPtr<AudioDestinationNode> impl)
37     {
38         JSAudioDestinationNode* ptr = new (JSC::allocateCell<JSAudioDestinationNode>(globalObject->globalData().heap)) JSAudioDestinationNode(structure, globalObject, impl);
39         ptr->finishCreation(globalObject->globalData());
40         return ptr;
41     }
42
43     static JSC::JSObject* createPrototype(JSC::ExecState*, JSC::JSGlobalObject*);
44     static bool getOwnPropertySlot(JSC::JSCell*, JSC::ExecState*, const JSC::Identifier& propertyName, JSC::PropertySlot&);
45     static bool getOwnPropertyDescriptor(JSC::JSObject*, JSC::ExecState*, const JSC::Identifier& propertyName, JSC::PropertyDescriptor&);
46     static const JSC::ClassInfo s_info;
47
48     static JSC::Structure* createStructure(JSC::JSGlobalData& globalData, JSC::JSGlobalObject* globalObject, JSC::JSValue prototype)
49     {
50         return JSC::Structure::create(globalData, globalObject, prototype, JSC::TypeInfo(JSC::ObjectType, StructureFlags), &s_info);
51     }
52
53     static JSC::JSValue getConstructor(JSC::ExecState*, JSC::JSGlobalObject*);
54 protected:
55     JSAudioDestinationNode(JSC::Structure*, JSDOMGlobalObject*, PassRefPtr<AudioDestinationNode>);
56     void finishCreation(JSC::JSGlobalData&);
57     static const unsigned StructureFlags = JSC::OverridesGetOwnPropertySlot | Base::StructureFlags;
58 };
59
60 JSC::JSValue toJS(JSC::ExecState*, JSDOMGlobalObject*, AudioDestinationNode*);
61
62 class JSAudioDestinationNodePrototype : public JSC::JSNonFinalObject {
63 public:
64     typedef JSC::JSNonFinalObject Base;
65     static JSC::JSObject* self(JSC::ExecState*, JSC::JSGlobalObject*);
66     static JSAudioDestinationNodePrototype* create(JSC::JSGlobalData& globalData, JSC::JSGlobalObject* globalObject, JSC::Structure* structure)
67     {
68         JSAudioDestinationNodePrototype* ptr = new (JSC::allocateCell<JSAudioDestinationNodePrototype>(globalData.heap)) JSAudioDestinationNodePrototype(globalData, globalObject, structure);
69         ptr->finishCreation(globalData);
70         return ptr;
71     }
72
73     static const JSC::ClassInfo s_info;
74     static JSC::Structure* createStructure(JSC::JSGlobalData& globalData, JSC::JSGlobalObject* globalObject, JSC::JSValue prototype)
75     {
76         return JSC::Structure::create(globalData, globalObject, prototype, JSC::TypeInfo(JSC::ObjectType, StructureFlags), &s_info);
77     }
78
79 private:
80     JSAudioDestinationNodePrototype(JSC::JSGlobalData& globalData, JSC::JSGlobalObject*, JSC::Structure* structure) : JSC::JSNonFinalObject(globalData, structure) { }
81 protected:
82     static const unsigned StructureFlags = Base::StructureFlags;
83 };
84
85 class JSAudioDestinationNodeConstructor : public DOMConstructorObject {
86 private:
87     JSAudioDestinationNodeConstructor(JSC::Structure*, JSDOMGlobalObject*);
88     void finishCreation(JSC::ExecState*, JSDOMGlobalObject*);
89
90 public:
91     typedef DOMConstructorObject Base;
92     static JSAudioDestinationNodeConstructor* create(JSC::ExecState* exec, JSC::Structure* structure, JSDOMGlobalObject* globalObject)
93     {
94         JSAudioDestinationNodeConstructor* ptr = new (JSC::allocateCell<JSAudioDestinationNodeConstructor>(*exec->heap())) JSAudioDestinationNodeConstructor(structure, globalObject);
95         ptr->finishCreation(exec, globalObject);
96         return ptr;
97     }
98
99     static bool getOwnPropertySlot(JSC::JSCell*, JSC::ExecState*, const JSC::Identifier&, JSC::PropertySlot&);
100     static bool getOwnPropertyDescriptor(JSC::JSObject*, JSC::ExecState*, const JSC::Identifier&, JSC::PropertyDescriptor&);
101     static const JSC::ClassInfo s_info;
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 protected:
107     static const unsigned StructureFlags = JSC::OverridesGetOwnPropertySlot | JSC::ImplementsHasInstance | DOMConstructorObject::StructureFlags;
108 };
109
110 // Attributes
111
112 JSC::JSValue jsAudioDestinationNodeNumberOfChannels(JSC::ExecState*, JSC::JSValue, const JSC::Identifier&);
113 JSC::JSValue jsAudioDestinationNodeConstructor(JSC::ExecState*, JSC::JSValue, const JSC::Identifier&);
114
115 } // namespace WebCore
116
117 #endif // ENABLE(WEB_AUDIO)
118
119 #endif