summaryrefslogtreecommitdiffstats
path: root/chrome/common/indexed_db_key.h
diff options
context:
space:
mode:
authorbulach@chromium.org <bulach@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-08-11 09:03:52 +0000
committerbulach@chromium.org <bulach@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-08-11 09:03:52 +0000
commit5196b0cded7f952e8faf1f06230b1fda786a707a (patch)
tree3f3e904932e2a1031a46375ed623807dbea9ff0b /chrome/common/indexed_db_key.h
parentdcd5b33317e700f4dbce32122bcdc1da5a31ae8d (diff)
downloadchromium_src-5196b0cded7f952e8faf1f06230b1fda786a707a.zip
chromium_src-5196b0cded7f952e8faf1f06230b1fda786a707a.tar.gz
chromium_src-5196b0cded7f952e8faf1f06230b1fda786a707a.tar.bz2
Implements initial plumbing for IDBCursor.
This is the Chromium side of https://bugs.webkit.org/show_bug.cgi?id=41888 It's almost purely plumbing: actual logic and cursor implementation will follow soon. Review URL: http://codereview.chromium.org/2918002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@55693 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/indexed_db_key.h')
-rw-r--r--chrome/common/indexed_db_key.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/chrome/common/indexed_db_key.h b/chrome/common/indexed_db_key.h
index 9b0662a..41fb10b 100644
--- a/chrome/common/indexed_db_key.h
+++ b/chrome/common/indexed_db_key.h
@@ -19,6 +19,7 @@ class IndexedDBKey {
void SetInvalid();
void Set(const string16& string);
void Set(int32_t number);
+ void Set(const WebKit::WebIDBKey& key);
WebKit::WebIDBKey::Type type() const { return type_; }
const string16& string() const { return string_; }