| Index: ppapi/host/resource_message_filter.cc
|
| diff --git a/ppapi/host/resource_message_filter.cc b/ppapi/host/resource_message_filter.cc
|
| index 0b5a469b2b866029a3e43523f57571ee8f3cf706..cea9f9feb1c83d0cc827505ce496cad182a2e259 100644
|
| --- a/ppapi/host/resource_message_filter.cc
|
| +++ b/ppapi/host/resource_message_filter.cc
|
| @@ -61,7 +61,7 @@ bool ResourceMessageFilter::HandleMessage(const IPC::Message& msg,
|
| HostMessageContext* context) {
|
| scoped_refptr<base::TaskRunner> runner = OverrideTaskRunnerForMessage(msg);
|
| if (runner.get()) {
|
| - if (runner->RunsTasksOnCurrentThread()) {
|
| + if (runner->RunsTasksInCurrentSequence()) {
|
| DispatchMessage(msg, *context);
|
| } else {
|
| // TODO(raymes): We need to make a copy so the context can be used on
|
|
|