WebCore/generated/JSIDBObjectStoreRequest.h
changeset 0 4f2f89ce4247
equal deleted inserted replaced
-1:000000000000 0:4f2f89ce4247
       
     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 JSIDBObjectStoreRequest_h
       
    22 #define JSIDBObjectStoreRequest_h
       
    23 
       
    24 #if ENABLE(INDEXED_DATABASE)
       
    25 
       
    26 #include "JSDOMBinding.h"
       
    27 #include <runtime/JSGlobalObject.h>
       
    28 #include <runtime/JSObjectWithGlobalObject.h>
       
    29 #include <runtime/ObjectPrototype.h>
       
    30 
       
    31 namespace WebCore {
       
    32 
       
    33 class IDBObjectStoreRequest;
       
    34 
       
    35 class JSIDBObjectStoreRequest : public DOMObjectWithGlobalPointer {
       
    36     typedef DOMObjectWithGlobalPointer Base;
       
    37 public:
       
    38     JSIDBObjectStoreRequest(NonNullPassRefPtr<JSC::Structure>, JSDOMGlobalObject*, PassRefPtr<IDBObjectStoreRequest>);
       
    39     virtual ~JSIDBObjectStoreRequest();
       
    40     static JSC::JSObject* createPrototype(JSC::ExecState*, JSC::JSGlobalObject*);
       
    41     virtual bool getOwnPropertySlot(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::PropertySlot&);
       
    42     virtual bool getOwnPropertyDescriptor(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::PropertyDescriptor&);
       
    43     virtual const JSC::ClassInfo* classInfo() const { return &s_info; }
       
    44     static const JSC::ClassInfo s_info;
       
    45 
       
    46     static PassRefPtr<JSC::Structure> createStructure(JSC::JSValue prototype)
       
    47     {
       
    48         return JSC::Structure::create(prototype, JSC::TypeInfo(JSC::ObjectType, StructureFlags), AnonymousSlotCount);
       
    49     }
       
    50 
       
    51     static JSC::JSValue getConstructor(JSC::ExecState*, JSC::JSGlobalObject*);
       
    52     IDBObjectStoreRequest* impl() const { return m_impl.get(); }
       
    53 
       
    54 private:
       
    55     RefPtr<IDBObjectStoreRequest> m_impl;
       
    56 protected:
       
    57     static const unsigned StructureFlags = JSC::OverridesGetOwnPropertySlot | Base::StructureFlags;
       
    58 };
       
    59 
       
    60 JSC::JSValue toJS(JSC::ExecState*, JSDOMGlobalObject*, IDBObjectStoreRequest*);
       
    61 IDBObjectStoreRequest* toIDBObjectStoreRequest(JSC::JSValue);
       
    62 
       
    63 class JSIDBObjectStoreRequestPrototype : public JSC::JSObjectWithGlobalObject {
       
    64     typedef JSC::JSObjectWithGlobalObject Base;
       
    65 public:
       
    66     static JSC::JSObject* self(JSC::ExecState*, JSC::JSGlobalObject*);
       
    67     virtual const JSC::ClassInfo* classInfo() const { return &s_info; }
       
    68     static const JSC::ClassInfo s_info;
       
    69     virtual bool getOwnPropertySlot(JSC::ExecState*, const JSC::Identifier&, JSC::PropertySlot&);
       
    70     virtual bool getOwnPropertyDescriptor(JSC::ExecState*, const JSC::Identifier&, JSC::PropertyDescriptor&);
       
    71     static PassRefPtr<JSC::Structure> createStructure(JSC::JSValue prototype)
       
    72     {
       
    73         return JSC::Structure::create(prototype, JSC::TypeInfo(JSC::ObjectType, StructureFlags), AnonymousSlotCount);
       
    74     }
       
    75     JSIDBObjectStoreRequestPrototype(JSC::JSGlobalObject* globalObject, NonNullPassRefPtr<JSC::Structure> structure) : JSC::JSObjectWithGlobalObject(globalObject, structure) { }
       
    76 protected:
       
    77     static const unsigned StructureFlags = JSC::OverridesGetOwnPropertySlot | Base::StructureFlags;
       
    78 };
       
    79 
       
    80 // Functions
       
    81 
       
    82 JSC::EncodedJSValue JSC_HOST_CALL jsIDBObjectStoreRequestPrototypeFunctionGet(JSC::ExecState*);
       
    83 JSC::EncodedJSValue JSC_HOST_CALL jsIDBObjectStoreRequestPrototypeFunctionAdd(JSC::ExecState*);
       
    84 JSC::EncodedJSValue JSC_HOST_CALL jsIDBObjectStoreRequestPrototypeFunctionPut(JSC::ExecState*);
       
    85 JSC::EncodedJSValue JSC_HOST_CALL jsIDBObjectStoreRequestPrototypeFunctionRemove(JSC::ExecState*);
       
    86 JSC::EncodedJSValue JSC_HOST_CALL jsIDBObjectStoreRequestPrototypeFunctionCreateIndex(JSC::ExecState*);
       
    87 JSC::EncodedJSValue JSC_HOST_CALL jsIDBObjectStoreRequestPrototypeFunctionIndex(JSC::ExecState*);
       
    88 JSC::EncodedJSValue JSC_HOST_CALL jsIDBObjectStoreRequestPrototypeFunctionRemoveIndex(JSC::ExecState*);
       
    89 // Attributes
       
    90 
       
    91 JSC::JSValue jsIDBObjectStoreRequestName(JSC::ExecState*, JSC::JSValue, const JSC::Identifier&);
       
    92 JSC::JSValue jsIDBObjectStoreRequestKeyPath(JSC::ExecState*, JSC::JSValue, const JSC::Identifier&);
       
    93 JSC::JSValue jsIDBObjectStoreRequestIndexNames(JSC::ExecState*, JSC::JSValue, const JSC::Identifier&);
       
    94 JSC::JSValue jsIDBObjectStoreRequestConstructor(JSC::ExecState*, JSC::JSValue, const JSC::Identifier&);
       
    95 
       
    96 } // namespace WebCore
       
    97 
       
    98 #endif // ENABLE(INDEXED_DATABASE)
       
    99 
       
   100 #endif