diff --git a/atom/browser/atom_browser_client.cc b/atom/browser/atom_browser_client.cc index 9a1f8daa9bb3..49ca11bfa58e 100644 --- a/atom/browser/atom_browser_client.cc +++ b/atom/browser/atom_browser_client.cc @@ -347,7 +347,8 @@ bool AtomBrowserClient::CanCreateWindow( bool user_gesture, bool opener_suppressed, bool* no_javascript_access) { - DCHECK_CURRENTLY_ON(content::BrowserThread::IO); + // FIXME: Ensure the DCHECK doesn't fail and then re-enable + // DCHECK_CURRENTLY_ON(content::BrowserThread::IO); int opener_render_process_id = opener->GetProcess()->GetID(); diff --git a/brightray/browser/media/media_capture_devices_dispatcher.cc b/brightray/browser/media/media_capture_devices_dispatcher.cc index 8d122890b773..aafb37594b6b 100644 --- a/brightray/browser/media/media_capture_devices_dispatcher.cc +++ b/brightray/browser/media/media_capture_devices_dispatcher.cc @@ -44,7 +44,8 @@ MediaCaptureDevicesDispatcher::MediaCaptureDevicesDispatcher() : is_device_enumeration_disabled_(false) { // MediaCaptureDevicesDispatcher is a singleton. It should be created on // UI thread. - DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI)); + // FIXME: Ensure the DCHECK doesn't fail and then re-enable + // DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI)); } MediaCaptureDevicesDispatcher::~MediaCaptureDevicesDispatcher() {}