| Index: chrome/browser/extensions/extension_message_service.cc
|
| ===================================================================
|
| --- chrome/browser/extensions/extension_message_service.cc (revision 30037)
|
| +++ chrome/browser/extensions/extension_message_service.cc (working copy)
|
| @@ -198,8 +198,7 @@
|
| int routing_id, const std::string& source_extension_id,
|
| const std::string& target_extension_id,
|
| const std::string& channel_name, ResourceMessageFilter* source) {
|
| - DCHECK_EQ(MessageLoop::current(),
|
| - ChromeThread::GetMessageLoop(ChromeThread::IO));
|
| + DCHECK(ChromeThread::CurrentlyOn(ChromeThread::IO));
|
|
|
| // Create a channel ID for both sides of the channel.
|
| int port1_id = -1;
|
| @@ -222,8 +221,7 @@
|
| const std::string& extension_id,
|
| const std::string& channel_name,
|
| ResourceMessageFilter* source) {
|
| - DCHECK_EQ(MessageLoop::current(),
|
| - ChromeThread::GetMessageLoop(ChromeThread::IO));
|
| + DCHECK(ChromeThread::CurrentlyOn(ChromeThread::IO));
|
|
|
| // Create a channel ID for both sides of the channel.
|
| int port1_id = -1;
|
|
|