Index: content/browser/indexed_db/indexed_db_cursor.h |
diff --git a/content/browser/indexed_db/indexed_db_cursor.h b/content/browser/indexed_db/indexed_db_cursor.h |
index db5963058e70fd76d61c8f0dffd8b4557ece20d7..e9c9e35f0bba84e6b37770cb8bf10f9467000aa8 100644 |
--- a/content/browser/indexed_db/indexed_db_cursor.h |
+++ b/content/browser/indexed_db/indexed_db_cursor.h |
@@ -35,7 +35,7 @@ class CONTENT_EXPORT IndexedDBCursor |
const IndexedDBKey& key() const { return cursor_->key(); } |
const IndexedDBKey& primary_key() const { return cursor_->primary_key(); } |
- std::string* Value() const { |
+ IndexedDBValue* Value() const { |
return (cursor_type_ == indexed_db::CURSOR_KEY_ONLY) ? NULL |
: cursor_->Value(); |
} |