Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4840)

Unified Diff: chrome/browser/chrome_plugin_browsing_context.cc

Issue 306032: Simplify threading in browser thread by making only ChromeThread deal with di... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: a few more simplifications Created 11 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/chrome_plugin_browsing_context.cc
===================================================================
--- chrome/browser/chrome_plugin_browsing_context.cc (revision 30037)
+++ chrome/browser/chrome_plugin_browsing_context.cc (working copy)
@@ -10,13 +10,7 @@
#include "chrome/common/notification_service.h"
CPBrowsingContextManager* CPBrowsingContextManager::Instance() {
-#ifndef NDEBUG
- // IO loop is NULL in unit tests.
- if (ChromeThread::GetMessageLoop(ChromeThread::IO)) {
- DCHECK(MessageLoop::current() ==
- ChromeThread::GetMessageLoop(ChromeThread::IO));
- }
-#endif
+ DCHECK(ChromeThread::CurrentlyOn(ChromeThread::IO));
return Singleton<CPBrowsingContextManager>::get();
}

Powered by Google App Engine
This is Rietveld 408576698