| Index: chrome/browser/extensions/api/messaging/native_process_launcher.cc
|
| diff --git a/chrome/browser/extensions/api/messaging/native_process_launcher.cc b/chrome/browser/extensions/api/messaging/native_process_launcher.cc
|
| index db3962d33453f805dbafb05c1a91a4ef9d1b04a3..fa8c7e9a07bcdea065509088f415c1c6afdaecab 100644
|
| --- a/chrome/browser/extensions/api/messaging/native_process_launcher.cc
|
| +++ b/chrome/browser/extensions/api/messaging/native_process_launcher.cc
|
| @@ -99,7 +99,7 @@ NativeProcessLauncherImpl::Core::~Core() {
|
| }
|
|
|
| void NativeProcessLauncherImpl::Core::Detach() {
|
| - DCHECK(content::BrowserThread::CurrentlyOn(content::BrowserThread::IO));
|
| + DCHECK_CURRENTLY_ON(content::BrowserThread::IO);
|
| detached_ = true;
|
| }
|
|
|
| @@ -199,7 +199,7 @@ void NativeProcessLauncherImpl::Core::CallCallbackOnIOThread(
|
| base::ProcessHandle process_handle,
|
| base::File read_file,
|
| base::File write_file) {
|
| - DCHECK(content::BrowserThread::CurrentlyOn(content::BrowserThread::IO));
|
| + DCHECK_CURRENTLY_ON(content::BrowserThread::IO);
|
| if (detached_)
|
| return;
|
|
|
|
|