| 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_;
|
|
|