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

Unified Diff: Source/modules/indexeddb/IDBCursor.h

Issue 18590006: Blob support for IDB [Blink] (Closed) Base URL: svn://svn.chromium.org/blink/trunk
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: Source/modules/indexeddb/IDBCursor.h
diff --git a/Source/modules/indexeddb/IDBCursor.h b/Source/modules/indexeddb/IDBCursor.h
index b56cde76bc059f454163ebb98daaafb442e6d95e..c5dfb51d2bdc7b29bcf1248508668f23343816ee 100644
--- a/Source/modules/indexeddb/IDBCursor.h
+++ b/Source/modules/indexeddb/IDBCursor.h
@@ -78,7 +78,7 @@ public:
void continueFunction(PassRefPtr<IDBKey>, ExceptionState&);
void postSuccessHandlerCallback();
void close();
- void setValueReady(PassRefPtr<IDBKey>, PassRefPtr<IDBKey> primaryKey, PassRefPtr<SharedBuffer> value);
+ void setValueReady(PassRefPtr<IDBKey>, PassRefPtr<IDBKey> primaryKey, PassRefPtr<SharedBuffer> value, Vector<BlobInfo>&);
PassRefPtr<IDBKey> idbPrimaryKey() { return m_primaryKey; }
IDBRequest* request() { return m_request.get(); }
@@ -112,6 +112,7 @@ private:
RefPtr<IDBKey> m_key;
RefPtr<IDBKey> m_primaryKey;
RefPtr<SharedBuffer> m_value;
+ Vector<BlobInfo> m_blobInfo;
};
} // namespace WebCore

Powered by Google App Engine
This is Rietveld 408576698