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

Unified Diff: content/browser/renderer_host/render_process_host_impl.h

Issue 501033003: Remove implicit conversions from scoped_refptr to T* in content/browser/renderer_host/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 4 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/browser/renderer_host/render_process_host_impl.h
diff --git a/content/browser/renderer_host/render_process_host_impl.h b/content/browser/renderer_host/render_process_host_impl.h
index 7d1db32b28434099b2dc6227dc80aedaf031c310..3f0098e68de4e35528d5149fe550a185eab3e08e 100644
--- a/content/browser/renderer_host/render_process_host_impl.h
+++ b/content/browser/renderer_host/render_process_host_impl.h
@@ -234,7 +234,7 @@ class CONTENT_EXPORT RenderProcessHostImpl
#endif
MessagePortMessageFilter* message_port_message_filter() const {
- return message_port_message_filter_;
+ return message_port_message_filter_.get();
}
void set_is_isolated_guest_for_testing(bool is_isolated_guest) {
« no previous file with comments | « content/browser/renderer_host/pepper/quota_reservation.cc ('k') | content/browser/renderer_host/render_process_host_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698