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

Unified Diff: content/common_child/indexed_db/proxy_webidbcursor_impl.h

Issue 16337010: Remove IDBCursorBackendInterface::deleteFunction (part 2/3) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 7 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/common_child/indexed_db/proxy_webidbcursor_impl.h
diff --git a/content/common_child/indexed_db/proxy_webidbcursor_impl.h b/content/common_child/indexed_db/proxy_webidbcursor_impl.h
index 94337529c5ee4460fc6158b961dce4d383d67c4d..ce529d8c90d7de38d482baf21826885e471ca264 100644
--- a/content/common_child/indexed_db/proxy_webidbcursor_impl.h
+++ b/content/common_child/indexed_db/proxy_webidbcursor_impl.h
@@ -26,17 +26,14 @@ class CONTENT_EXPORT RendererWebIDBCursorImpl
explicit RendererWebIDBCursorImpl(int32 ipc_cursor_id);
virtual ~RendererWebIDBCursorImpl();
- virtual void advance(unsigned long count,
- WebKit::WebIDBCallbacks* callback);
+ virtual void advance(unsigned long count, WebKit::WebIDBCallbacks* callback);
virtual void continueFunction(const WebKit::WebIDBKey& key,
WebKit::WebIDBCallbacks* callback);
- virtual void deleteFunction(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);
void CachedContinue(WebKit::WebIDBCallbacks* callbacks);
void ResetPrefetchCache();

Powered by Google App Engine
This is Rietveld 408576698