diff options
Diffstat (limited to 'Source/WebCore/bindings/v8/custom/V8IDBAnyCustom.cpp')
-rw-r--r-- | Source/WebCore/bindings/v8/custom/V8IDBAnyCustom.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/WebCore/bindings/v8/custom/V8IDBAnyCustom.cpp b/Source/WebCore/bindings/v8/custom/V8IDBAnyCustom.cpp index fd6f1a5..ccd6fb2 100644 --- a/Source/WebCore/bindings/v8/custom/V8IDBAnyCustom.cpp +++ b/Source/WebCore/bindings/v8/custom/V8IDBAnyCustom.cpp @@ -33,6 +33,7 @@ #include "SerializedScriptValue.h" #include "V8IDBCursor.h" +#include "V8IDBCursorWithValue.h" #include "V8IDBDatabase.h" #include "V8IDBFactory.h" #include "V8IDBIndex.h" @@ -54,6 +55,8 @@ v8::Handle<v8::Value> toV8(IDBAny* impl) return v8::Null(); case IDBAny::IDBCursorType: return toV8(impl->idbCursor()); + case IDBAny::IDBCursorWithValueType: + return toV8(impl->idbCursorWithValue()); case IDBAny::IDBDatabaseType: return toV8(impl->idbDatabase()); case IDBAny::IDBFactoryType: |