tizen beta release
[framework/web/webkit-efl.git] / Source / WebCore / bindings / scripts / test / V8 / V8Float64Array.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., 59 Temple Place - Suite 330,
18     Boston, MA 02111-1307, USA.
19 */
20
21 #ifndef V8Float64Array_h
22 #define V8Float64Array_h
23
24 #include "V8ArrayBufferView.h"
25 #include "V8DOMWrapper.h"
26 #include "WrapperTypeInfo.h"
27 #include <v8.h>
28 #include <wtf/Float64Array.h>
29 #include <wtf/HashMap.h>
30 #include <wtf/text/StringHash.h>
31
32 namespace WebCore {
33
34 class V8Float64Array {
35 public:
36     static const bool hasDependentLifetime = V8ArrayBufferView::hasDependentLifetime;
37     static bool HasInstance(v8::Handle<v8::Value>);
38     static v8::Persistent<v8::FunctionTemplate> GetRawTemplate();
39     static v8::Persistent<v8::FunctionTemplate> GetTemplate();
40     static Float64Array* toNative(v8::Handle<v8::Object> object)
41     {
42         return reinterpret_cast<Float64Array*>(object->GetPointerFromInternalField(v8DOMWrapperObjectIndex));
43     }
44     inline static v8::Handle<v8::Object> wrap(Float64Array*);
45     static void derefObject(void*);
46     static WrapperTypeInfo info;
47     static v8::Handle<v8::Value> constructorCallback(const v8::Arguments&);
48     static const int internalFieldCount = v8DefaultWrapperInternalFieldCount + 0;
49     static v8::Handle<v8::Object> existingWrapper(Float64Array*);
50
51 private:
52     static v8::Handle<v8::Object> wrapSlow(Float64Array*);
53 };
54
55 ALWAYS_INLINE v8::Handle<v8::Object> V8Float64Array::existingWrapper(Float64Array* impl)
56 {
57     return getDOMObjectMap().get(impl);
58 }
59
60 v8::Handle<v8::Object> V8Float64Array::wrap(Float64Array* impl)
61 {
62         v8::Handle<v8::Object> wrapper = existingWrapper(impl);
63         if (!wrapper.IsEmpty())
64             return wrapper;
65     return V8Float64Array::wrapSlow(impl);
66 }
67
68 v8::Handle<v8::Value> toV8(Float64Array*);
69 inline v8::Handle<v8::Value> toV8(PassRefPtr< Float64Array > impl)
70 {
71     return toV8(impl.get());
72 }
73
74 }
75
76 #endif // V8Float64Array_h