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

Unified Diff: content/child/indexed_db/proxy_webidbcursor_impl.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/child/indexed_db/proxy_webidbcursor_impl.h
diff --git a/content/child/indexed_db/proxy_webidbcursor_impl.h b/content/child/indexed_db/proxy_webidbcursor_impl.h
index 2c8b8f289683acbdd01b11f094e8b75e9eca9182..bd0d8690b66d001c74aabcb69e03ea7abe50159d 100644
--- a/content/child/indexed_db/proxy_webidbcursor_impl.h
+++ b/content/child/indexed_db/proxy_webidbcursor_impl.h
@@ -34,9 +34,11 @@ class CONTENT_EXPORT RendererWebIDBCursorImpl
WebKit::WebIDBCallbacks* callback);
virtual void postSuccessHandlerCallback();
- void SetPrefetchData(const std::vector<IndexedDBKey>& keys,
- const std::vector<IndexedDBKey>& primary_keys,
- const std::vector<WebKit::WebData>& values);
+ void SetPrefetchData(
+ const std::vector<IndexedDBKey>& keys,
+ const std::vector<IndexedDBKey>& primary_keys,
+ const std::vector<WebKit::WebData>& values,
+ const std::vector<WebKit::WebVector<WebKit::WebBlobInfo> >& blob_info);
void CachedContinue(WebKit::WebIDBCallbacks* callbacks);
void ResetPrefetchCache();
@@ -50,6 +52,7 @@ class CONTENT_EXPORT RendererWebIDBCursorImpl
std::deque<IndexedDBKey> prefetch_keys_;
std::deque<IndexedDBKey> prefetch_primary_keys_;
std::deque<WebKit::WebData> prefetch_values_;
+ std::deque<WebKit::WebVector<WebKit::WebBlobInfo> > prefetch_blob_info_;
// Number of continue calls that would qualify for a pre-fetch.
int continue_count_;

Powered by Google App Engine
This is Rietveld 408576698