| 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 5fd86f44b1c2d8966e62b88be4f35c6b1a4d1997..d106887afd35154b734994ac1834baa25c00c9c6 100644
|
| --- a/content/browser/indexed_db/indexed_db_cursor.h
|
| +++ b/content/browser/indexed_db/indexed_db_cursor.h
|
| @@ -36,7 +36,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();
|
| }
|
|
|