| Index: ppapi/host/resource_message_filter.h
|
| diff --git a/ppapi/host/resource_message_filter.h b/ppapi/host/resource_message_filter.h
|
| index 8dcf6c2963b76eb5729ce9de172b8a7060ff4d50..31b469c1f723cb83864a96b5c10832611dbecd91 100644
|
| --- a/ppapi/host/resource_message_filter.h
|
| +++ b/ppapi/host/resource_message_filter.h
|
| @@ -52,7 +52,7 @@ struct PPAPI_HOST_EXPORT ResourceMessageFilterDeleteTraits {
|
| // scoped_refptr<base::TaskRunner> OverrideTaskRunnerForMessage(
|
| // const IPC::Message& message) override {
|
| // if (message.type() == MyMessage::ID)
|
| -// return BrowserThread::GetMessageLoopProxyForThread(BrowserThread::UI);
|
| +// return BrowserThread::GetTaskRunnerForThread(BrowserThread::UI);
|
| // return NULL;
|
| // }
|
| //
|
| @@ -127,9 +127,9 @@ class PPAPI_HOST_EXPORT ResourceMessageFilter
|
|
|
| scoped_refptr<base::SingleThreadTaskRunner> deletion_task_runner_;
|
|
|
| - // Message loop to send resource message replies on. This will be the message
|
| - // loop proxy of the IO thread for the browser process or the main thread for
|
| - // the renderer process.
|
| + // Task runner to send resource message replies on. This will be the task
|
| + // runner of the IO thread for the browser process or the main thread for a
|
| + // renderer process.
|
| scoped_refptr<base::SingleThreadTaskRunner> reply_thread_task_runner_;
|
|
|
| // Non-owning pointer to the resource host owning this filter. Should only be
|
|
|