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

Unified Diff: content/child/indexed_db/indexed_db_dispatcher_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/indexed_db_dispatcher_unittest.cc
===================================================================
--- content/child/indexed_db/indexed_db_dispatcher_unittest.cc (revision 208777)
+++ content/child/indexed_db/indexed_db_dispatcher_unittest.cc (working copy)
@@ -3,9 +3,12 @@
// found in the LICENSE file.
#include "base/memory/scoped_ptr.h"
+#include "base/message_loop/message_loop_proxy.h"
#include "base/values.h"
#include "content/child/indexed_db/indexed_db_dispatcher.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"
@@ -43,8 +46,15 @@
const int64 transaction_id = 1;
const int64 object_store_id = 2;
+ 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));
+
MockCallbacks callbacks;
- IndexedDBDispatcher dispatcher;
+ IndexedDBDispatcher dispatcher(thread_safe_sender);
IndexedDBKey key(0, WebIDBKey::NumberType);
dispatcher.RequestIDBDatabasePut(ipc_dummy_id,
transaction_id,
« no previous file with comments | « content/child/indexed_db/indexed_db_dispatcher.cc ('k') | content/child/indexed_db/indexed_db_message_filter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698