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

Unified Diff: content/renderer/gpu/compositor_thread.cc

Issue 11275088: Remove implicit scoped_refptr operator T* Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 8 years, 2 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
« no previous file with comments | « content/plugin/plugin_channel.cc ('k') | content/renderer/media/mock_media_stream_dependency_factory.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/gpu/compositor_thread.cc
diff --git a/content/renderer/gpu/compositor_thread.cc b/content/renderer/gpu/compositor_thread.cc
index 815d1c221b155cab71ddea083fc165e5350bb124..2d2a532632d53ce538391525dca8ae98a50def02 100644
--- a/content/renderer/gpu/compositor_thread.cc
+++ b/content/renderer/gpu/compositor_thread.cc
@@ -87,7 +87,7 @@ CompositorThread::CompositorThread(IPC::Listener* main_listener)
: thread_("Compositor") {
filter_ =
new InputEventFilter(main_listener,
- thread_.message_loop()->message_loop_proxy(),
+ thread_.message_loop()->message_loop_proxy().get(),
base::Bind(&CompositorThread::HandleInputEvent,
base::Unretained(this)));
}
@@ -96,7 +96,7 @@ CompositorThread::~CompositorThread() {
}
IPC::ChannelProxy::MessageFilter* CompositorThread::GetMessageFilter() const {
- return filter_;
+ return filter_.get();
}
void CompositorThread::AddInputHandler(
« no previous file with comments | « content/plugin/plugin_channel.cc ('k') | content/renderer/media/mock_media_stream_dependency_factory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698