blob: 2542f220299b5bf9efc4d3088d9b6f8a4f4fcb3c [file] [log] [blame]
// 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/single_thread_task_runner.h"
#include "content/child/child_thread_impl.h"
#include "ipc/ipc_sync_message_filter.h"
namespace content {
ThreadSafeSender::~ThreadSafeSender() {
}
ThreadSafeSender::ThreadSafeSender(
const scoped_refptr<base::SingleThreadTaskRunner>& main_task_runner,
const scoped_refptr<IPC::SyncMessageFilter>& sync_filter)
: main_task_runner_(main_task_runner), sync_filter_(sync_filter) {
}
bool ThreadSafeSender::Send(IPC::Message* msg) {
if (main_task_runner_->BelongsToCurrentThread())
return ChildThreadImpl::current()->Send(msg);
return sync_filter_->Send(msg);
}
} // namespace content