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

Unified Diff: content/browser/indexed_db/webidbcursor_impl.cc

Issue 15564008: Migrate the IndexedDB backend from Blink to Chromium (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Update to ToT again 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
« no previous file with comments | « content/browser/indexed_db/webidbcursor_impl.h ('k') | content/browser/indexed_db/webidbdatabase_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/indexed_db/webidbcursor_impl.cc
diff --git a/content/browser/indexed_db/webidbcursor_impl.cc b/content/browser/indexed_db/webidbcursor_impl.cc
new file mode 100644
index 0000000000000000000000000000000000000000..629ebaf5ed78d5f0e2bc408e6113b2ae6d4df45b
--- /dev/null
+++ b/content/browser/indexed_db/webidbcursor_impl.cc
@@ -0,0 +1,51 @@
+// Copyright (c) 2013 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "content/browser/indexed_db/webidbcursor_impl.h"
+
+#include "content/browser/indexed_db/indexed_db_callbacks_wrapper.h"
+#include "content/browser/indexed_db/indexed_db_cursor.h"
+#include "content/common/indexed_db/indexed_db_key.h"
+#include "third_party/WebKit/public/platform/WebIDBKey.h"
+
+using WebKit::WebIDBCallbacks;
+
+namespace content {
+
+WebIDBCursorImpl::WebIDBCursorImpl(
+ scoped_refptr<IndexedDBCursor> idb_cursor_backend)
+ : idb_cursor_backend_(idb_cursor_backend) {}
+
+WebIDBCursorImpl::~WebIDBCursorImpl() {}
+
+void WebIDBCursorImpl::advance(unsigned long count,
+ WebIDBCallbacks* callbacks) {
+ idb_cursor_backend_->Advance(count,
+ IndexedDBCallbacksWrapper::Create(callbacks));
+}
+
+void WebIDBCursorImpl::continueFunction(const WebKit::WebIDBKey& key,
+ WebIDBCallbacks* callbacks) {
+ idb_cursor_backend_->ContinueFunction(
+ make_scoped_ptr(new IndexedDBKey(key)),
+ IndexedDBCallbacksWrapper::Create(callbacks));
+}
+
+void WebIDBCursorImpl::deleteFunction(WebIDBCallbacks* callbacks) {
+ idb_cursor_backend_->DeleteFunction(
+ IndexedDBCallbacksWrapper::Create(callbacks));
+}
+
+void WebIDBCursorImpl::prefetchContinue(int number_to_fetch,
+ WebKit::WebIDBCallbacks* callbacks) {
+ idb_cursor_backend_->PrefetchContinue(
+ number_to_fetch, IndexedDBCallbacksWrapper::Create(callbacks));
+}
+
+void WebIDBCursorImpl::prefetchReset(int used_prefetches,
+ int unused_prefetches) {
+ idb_cursor_backend_->PrefetchReset(used_prefetches, unused_prefetches);
+}
+
+} // namespace content
« no previous file with comments | « content/browser/indexed_db/webidbcursor_impl.h ('k') | content/browser/indexed_db/webidbdatabase_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698