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

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: Handle the rest of Josh's feedback. Created 7 years 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 c92b090b5b730669cfc83507399ad88fd9729680..6bc5f2c4343a7e252fb649e231032c82f57a75f5 100644
--- a/content/child/indexed_db/proxy_webidbcursor_impl.h
+++ b/content/child/indexed_db/proxy_webidbcursor_impl.h
@@ -37,9 +37,11 @@ class CONTENT_EXPORT RendererWebIDBCursorImpl
blink::WebIDBCallbacks* callback);
virtual void postSuccessHandlerCallback();
- void SetPrefetchData(const std::vector<IndexedDBKey>& keys,
- const std::vector<IndexedDBKey>& primary_keys,
- const std::vector<blink::WebData>& values);
+ void SetPrefetchData(
+ const std::vector<IndexedDBKey>& keys,
+ const std::vector<IndexedDBKey>& primary_keys,
+ const std::vector<blink::WebData>& values,
+ const std::vector<blink::WebVector<blink::WebBlobInfo> >& blob_info);
void CachedContinue(blink::WebIDBCallbacks* callbacks);
void ResetPrefetchCache();
@@ -53,6 +55,7 @@ class CONTENT_EXPORT RendererWebIDBCursorImpl
std::deque<IndexedDBKey> prefetch_keys_;
std::deque<IndexedDBKey> prefetch_primary_keys_;
std::deque<blink::WebData> prefetch_values_;
+ std::deque<blink::WebVector<blink::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