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

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

Issue 10831138: Remove a ton of IPC from landing putWithIndexKeys (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Additional stuff found with lint Created 8 years, 5 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/indexed_db/proxy_webidbcursor_impl.h
diff --git a/content/common/indexed_db/proxy_webidbcursor_impl.h b/content/common/indexed_db/proxy_webidbcursor_impl.h
index db61d6653dc84f541e5b0d3f68de198345f4b4c3..1e44188ee6c950c18dc47d9e77a84dbd2647f35e 100644
--- a/content/common/indexed_db/proxy_webidbcursor_impl.h
+++ b/content/common/indexed_db/proxy_webidbcursor_impl.h
@@ -6,6 +6,7 @@
#define CONTENT_COMMON_INDEXED_DB_PROXY_WEBIDBCURSOR_IMPL_H_
#include <deque>
+#include <vector>
#include "base/basictypes.h"
#include "content/common/indexed_db/indexed_db_key.h"
@@ -17,15 +18,12 @@
class RendererWebIDBCursorImpl : public WebKit::WebIDBCursor {
public:
- RendererWebIDBCursorImpl(int32 idb_cursor_id);
+ explicit RendererWebIDBCursorImpl(int32 idb_cursor_id);
virtual ~RendererWebIDBCursorImpl();
virtual WebKit::WebIDBKey key() const;
virtual WebKit::WebIDBKey primaryKey() const;
virtual WebKit::WebSerializedScriptValue value() const;
- virtual void update(const WebKit::WebSerializedScriptValue& value,
- WebKit::WebIDBCallbacks* callback,
- WebKit::WebExceptionCode& ec);
virtual void advance(unsigned long count,
WebKit::WebIDBCallbacks* callback,
WebKit::WebExceptionCode& ec);

Powered by Google App Engine
This is Rietveld 408576698