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

Unified Diff: content/child/indexed_db/indexed_db_database_callbacks_impl.h

Issue 2500263003: Port messages sent by WebIDBCursorImpl to Mojo. (Closed)
Patch Set: Address dcheng@'s comments. Created 4 years, 1 month 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/indexed_db_database_callbacks_impl.h
diff --git a/content/child/indexed_db/indexed_db_database_callbacks_impl.h b/content/child/indexed_db/indexed_db_database_callbacks_impl.h
index 67a239858c20c108df0f50fa218cdadd5d2ebd35..992bfaf899182e7ffcea0ae9de1f78ca10bff73d 100644
--- a/content/child/indexed_db/indexed_db_database_callbacks_impl.h
+++ b/content/child/indexed_db/indexed_db_database_callbacks_impl.h
@@ -13,14 +13,11 @@ class WebIDBDatabaseCallbacks;
namespace content {
-class ThreadSafeSender;
-
class IndexedDBDatabaseCallbacksImpl
: public indexed_db::mojom::DatabaseCallbacks {
public:
explicit IndexedDBDatabaseCallbacksImpl(
- std::unique_ptr<blink::WebIDBDatabaseCallbacks> callbacks,
- scoped_refptr<ThreadSafeSender> thread_safe_sender);
+ std::unique_ptr<blink::WebIDBDatabaseCallbacks> callbacks);
~IndexedDBDatabaseCallbacksImpl() override;
// indexed_db::mojom::DatabaseCallbacks implementation
@@ -33,7 +30,6 @@ class IndexedDBDatabaseCallbacksImpl
private:
scoped_refptr<base::SingleThreadTaskRunner> callback_runner_;
- scoped_refptr<ThreadSafeSender> thread_safe_sender_;
blink::WebIDBDatabaseCallbacks* callbacks_;
DISALLOW_COPY_AND_ASSIGN(IndexedDBDatabaseCallbacksImpl);
« no previous file with comments | « content/child/indexed_db/indexed_db_callbacks_impl.cc ('k') | content/child/indexed_db/indexed_db_database_callbacks_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698