summaryrefslogtreecommitdiffstats
path: root/content/common/child_thread.h
diff options
context:
space:
mode:
Diffstat (limited to 'content/common/child_thread.h')
-rw-r--r--content/common/child_thread.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/content/common/child_thread.h b/content/common/child_thread.h
index 69a2f1c..4df9203 100644
--- a/content/common/child_thread.h
+++ b/content/common/child_thread.h
@@ -97,14 +97,14 @@ class CONTENT_EXPORT ChildThread : public IPC::Listener, public IPC::Sender {
// lifetime is less than the main thread. The |filter| returned may only
// be used on background threads.
IPC::SyncMessageFilter* sync_message_filter() const {
- return sync_message_filter_;
+ return sync_message_filter_.get();
}
// The getter should only be called on the main thread, however the
// IPC::Sender it returns may be safely called on any thread including
// the main thread.
ThreadSafeSender* thread_safe_sender() const {
- return thread_safe_sender_;
+ return thread_safe_sender_.get();
}
ChildHistogramMessageFilter* child_histogram_message_filter() const {