summaryrefslogtreecommitdiffstats
path: root/WebKit/chromium/public/WebIDBObjectStore.h
diff options
context:
space:
mode:
Diffstat (limited to 'WebKit/chromium/public/WebIDBObjectStore.h')
-rwxr-xr-xWebKit/chromium/public/WebIDBObjectStore.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/WebKit/chromium/public/WebIDBObjectStore.h b/WebKit/chromium/public/WebIDBObjectStore.h
index fb81fb9..7452be9 100755
--- a/WebKit/chromium/public/WebIDBObjectStore.h
+++ b/WebKit/chromium/public/WebIDBObjectStore.h
@@ -33,6 +33,8 @@
namespace WebKit {
+class WebIDBKeyRange;
+
// See comment in WebIndexedDatabase for a high level overview these classes.
class WebIDBObjectStore {
public:
@@ -79,6 +81,10 @@ public:
{
WEBKIT_ASSERT_NOT_REACHED();
}
+ virtual void openCursor(const WebIDBKeyRange&, unsigned short direction, WebIDBCallbacks*)
+ {
+ WEBKIT_ASSERT_NOT_REACHED();
+ }
// FIXME: finish.
};