| Index: content/child/child_thread_impl.cc
|
| diff --git a/content/child/child_thread_impl.cc b/content/child/child_thread_impl.cc
|
| index 8fa0804beb1aee275d7999b4907a34e1915a3307..c7dc71c6c6e14a6fa9bdfb99406ee512a3bf9c4c 100644
|
| --- a/content/child/child_thread_impl.cc
|
| +++ b/content/child/child_thread_impl.cc
|
| @@ -749,6 +749,13 @@ std::unique_ptr<base::SharedMemory> ChildThreadImpl::AllocateSharedMemory(
|
| return shared_buf;
|
| }
|
|
|
| +#if defined(OS_LINUX)
|
| +void ChildThreadImpl::SetThreadPriority(base::PlatformThreadId id,
|
| + base::ThreadPriority priority) {
|
| + Send(new ChildProcessHostMsg_SetThreadPriority(id, priority));
|
| +}
|
| +#endif
|
| +
|
| bool ChildThreadImpl::OnMessageReceived(const IPC::Message& msg) {
|
| // Resource responses are sent to the resource dispatcher.
|
| if (resource_dispatcher_->OnMessageReceived(msg))
|
|
|