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

Unified Diff: content/child/indexed_db/proxy_webidbcursor_impl_unittest.cc

Issue 17955002: Fix IndexedDB after r208777. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: fix unittests Created 7 years, 6 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/child/indexed_db/proxy_webidbcursor_impl_unittest.cc
===================================================================
--- content/child/indexed_db/proxy_webidbcursor_impl_unittest.cc (revision 208777)
+++ content/child/indexed_db/proxy_webidbcursor_impl_unittest.cc (working copy)
@@ -6,7 +6,9 @@
#include "base/values.h"
#include "content/child/indexed_db/indexed_db_dispatcher.h"
#include "content/child/indexed_db/proxy_webidbcursor_impl.h"
+#include "content/child/thread_safe_sender.h"
#include "content/common/indexed_db/indexed_db_key.h"
+#include "ipc/ipc_sync_message_filter.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/WebKit/public/platform/WebData.h"
#include "third_party/WebKit/public/platform/WebIDBCallbacks.h"
@@ -23,8 +25,9 @@
class MockDispatcher : public IndexedDBDispatcher {
public:
- MockDispatcher()
- : prefetch_calls_(0),
+ MockDispatcher(ThreadSafeSender* thread_safe_sender)
+ : IndexedDBDispatcher(thread_safe_sender),
+ prefetch_calls_(0),
last_prefetch_count_(0),
continue_calls_(0),
destroyed_cursor_id_(0) {}
@@ -84,10 +87,18 @@
WebIDBKey null_key;
null_key.assignNull();
- MockDispatcher dispatcher;
+ scoped_refptr<base::MessageLoopProxy> message_loop_proxy(
+ base::MessageLoopProxy::current());
+ scoped_refptr<IPC::SyncMessageFilter> sync_message_filter(
+ new IPC::SyncMessageFilter(NULL));
+ scoped_refptr<ThreadSafeSender> thread_safe_sender(new ThreadSafeSender(
+ message_loop_proxy, sync_message_filter));
+ MockDispatcher dispatcher(thread_safe_sender);
+
{
- RendererWebIDBCursorImpl cursor(RendererWebIDBCursorImpl::kInvalidCursorId);
+ RendererWebIDBCursorImpl cursor(
+ RendererWebIDBCursorImpl::kInvalidCursorId, thread_safe_sender);
// Call continue() until prefetching should kick in.
int continue_calls = 0;
« no previous file with comments | « content/child/indexed_db/proxy_webidbcursor_impl.cc ('k') | content/child/indexed_db/proxy_webidbdatabase_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698