| Index: chrome/browser/extensions/api/messaging/native_message_process_host_posix.cc
|
| diff --git a/chrome/browser/extensions/api/messaging/native_message_process_host_posix.cc b/chrome/browser/extensions/api/messaging/native_message_process_host_posix.cc
|
| index 00f7e80744a5b0415d7f5113ff66189e7b0f084c..aaf4d08aaf34e39ab6c491ded86db1542454b04b 100644
|
| --- a/chrome/browser/extensions/api/messaging/native_message_process_host_posix.cc
|
| +++ b/chrome/browser/extensions/api/messaging/native_message_process_host_posix.cc
|
| @@ -25,8 +25,11 @@ void NativeMessageProcessHost::InitIO() {
|
| this);
|
| }
|
|
|
| +void NativeMessageProcessHost::StopIO() {
|
| +}
|
| +
|
| void NativeMessageProcessHost::OnFileCanReadWithoutBlocking(int fd) {
|
| - DCHECK(content::BrowserThread::CurrentlyOn(content::BrowserThread::FILE));
|
| + DCHECK(content::BrowserThread::CurrentlyOn(content::BrowserThread::IO));
|
|
|
| // Make sure that the fd given to us is the same one we started with.
|
| CHECK_EQ(fd, read_file_);
|
|
|