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

Unified Diff: content/child/indexed_db/webidbdatabase_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/webidbdatabase_impl.h
diff --git a/content/child/indexed_db/webidbdatabase_impl.h b/content/child/indexed_db/webidbdatabase_impl.h
index e8a04e3e9a6392d8200c079b85e7d3f4d5b9415d..e13aeefc782fab22ae822a1e1d3ae545d0305ae6 100644
--- a/content/child/indexed_db/webidbdatabase_impl.h
+++ b/content/child/indexed_db/webidbdatabase_impl.h
@@ -25,14 +25,12 @@ class WebString;
}
namespace content {
-class ThreadSafeSender;
class CONTENT_EXPORT WebIDBDatabaseImpl
: public NON_EXPORTED_BASE(blink::WebIDBDatabase) {
public:
WebIDBDatabaseImpl(indexed_db::mojom::DatabaseAssociatedPtrInfo database,
- scoped_refptr<base::SingleThreadTaskRunner> io_runner,
- scoped_refptr<ThreadSafeSender> thread_safe_sender);
+ scoped_refptr<base::SingleThreadTaskRunner> io_runner);
~WebIDBDatabaseImpl() override;
// blink::WebIDBDatabase
@@ -142,7 +140,6 @@ class CONTENT_EXPORT WebIDBDatabaseImpl
IOThreadHelper* helper_;
std::set<int32_t> observer_ids_;
scoped_refptr<base::SingleThreadTaskRunner> io_runner_;
- scoped_refptr<ThreadSafeSender> thread_safe_sender_;
};
} // namespace content
« no previous file with comments | « content/child/indexed_db/webidbcursor_impl_unittest.cc ('k') | content/child/indexed_db/webidbdatabase_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698