summaryrefslogtreecommitdiffstats
path: root/content/child/thread_safe_sender.cc
blob: d9ecfd1ca308aba69b9a9c1461f48829b2ccb4db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// Copyright (c) 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "content/child/thread_safe_sender.h"

#include "base/message_loop/message_loop_proxy.h"
#include "content/child/child_thread.h"
#include "ipc/ipc_sync_message_filter.h"

namespace content {

ThreadSafeSender::ThreadSafeSender(
    const scoped_refptr<base::MessageLoopProxy>& main_loop,
    const scoped_refptr<IPC::SyncMessageFilter>& sync_filter)
    : main_loop_(main_loop), sync_filter_(sync_filter) {
}

ThreadSafeSender::~ThreadSafeSender() {
}

bool ThreadSafeSender::Send(IPC::Message* msg) {
  if (main_loop_->BelongsToCurrentThread())
    return ChildThread::current()->Send(msg);
  return sync_filter_->Send(msg);
}

}  // namespace content