Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1091)

Unified Diff: content/browser/indexed_db/indexed_db_cursor.h

Issue 18023022: Blob support for IDB [Chromium] (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge fixes [builds, untested] Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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();
}

Powered by Google App Engine
This is Rietveld 408576698