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

Unified Diff: content/renderer/plugin_channel_host.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
Index: content/renderer/plugin_channel_host.cc
diff --git a/content/renderer/plugin_channel_host.cc b/content/renderer/plugin_channel_host.cc
index 5d251b66b7bd6f35394fe6bf07e95742863e32b9..63c55b70cb8ad2fd3d071003207c334baa31f4dd 100644
--- a/content/renderer/plugin_channel_host.cc
+++ b/content/renderer/plugin_channel_host.cc
@@ -142,7 +142,7 @@ bool PluginChannelHost::Init(base::MessageLoopProxy* ipc_message_loop,
NPChannelBase::Init(ipc_message_loop, create_pipe_now, shutdown_event);
if (ret) {
is_listening_filter_ = new IsListeningFilter;
- channel_->AddFilter(is_listening_filter_);
+ channel_->AddFilter(is_listening_filter_.get());
}
return ret;
}
« no previous file with comments | « content/renderer/pepper/pepper_platform_audio_input_impl.cc ('k') | content/test/net/url_request_abort_on_end_job.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698