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

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

Issue 18346006: Update OS X to use scoped_refptr<T>::get() rather than implicit "operator T*" (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased 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
diff --git a/content/child/indexed_db/proxy_webidbcursor_impl_unittest.cc b/content/child/indexed_db/proxy_webidbcursor_impl_unittest.cc
index 5c0e586fd951bbfc7260f115e279766905dde216..2dcc619081d2f80f746e24c6e1b287260eb665a0 100644
--- a/content/child/indexed_db/proxy_webidbcursor_impl_unittest.cc
+++ b/content/child/indexed_db/proxy_webidbcursor_impl_unittest.cc
@@ -91,13 +91,13 @@ TEST(RendererWebIDBCursorImplTest, PrefetchTest) {
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));
+ message_loop_proxy.get(), sync_message_filter.get()));
- MockDispatcher dispatcher(thread_safe_sender);
+ MockDispatcher dispatcher(thread_safe_sender.get());
{
- RendererWebIDBCursorImpl cursor(
- RendererWebIDBCursorImpl::kInvalidCursorId, thread_safe_sender);
+ RendererWebIDBCursorImpl cursor(RendererWebIDBCursorImpl::kInvalidCursorId,
+ thread_safe_sender.get());
// 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.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698