diff options
author | mostynb <mostynb@opera.com> | 2015-04-23 02:26:25 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-04-23 09:26:34 +0000 |
commit | 9125861b525058c9b2b03d697ae16fa58a334e07 (patch) | |
tree | 55ebe113101c5b349accd375f923ccabcb7163d5 /components/data_reduction_proxy | |
parent | 11e724cae6142ebb800a796fc8d4d36f0aa55c68 (diff) | |
download | chromium_src-9125861b525058c9b2b03d697ae16fa58a334e07.zip chromium_src-9125861b525058c9b2b03d697ae16fa58a334e07.tar.gz chromium_src-9125861b525058c9b2b03d697ae16fa58a334e07.tar.bz2 |
favor DCHECK_CURRENTLY_ON for better logs in components/ (part 2)
BUG=466848
Review URL: https://codereview.chromium.org/1043013002
Cr-Commit-Position: refs/heads/master@{#326483}
Diffstat (limited to 'components/data_reduction_proxy')
-rw-r--r-- | components/data_reduction_proxy/content/browser/data_reduction_proxy_debug_resource_throttle.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/data_reduction_proxy/content/browser/data_reduction_proxy_debug_resource_throttle.cc b/components/data_reduction_proxy/content/browser/data_reduction_proxy_debug_resource_throttle.cc index cc340ca..1b00b19 100644 --- a/components/data_reduction_proxy/content/browser/data_reduction_proxy_debug_resource_throttle.cc +++ b/components/data_reduction_proxy/content/browser/data_reduction_proxy_debug_resource_throttle.cc @@ -45,7 +45,7 @@ DataReductionProxyDebugResourceThrottle::MaybeCreate( void DataReductionProxyDebugResourceThrottle::StartDisplayingBlockingPage( scoped_refptr<DataReductionProxyDebugUIManager> ui_manager, const DataReductionProxyDebugUIManager::BypassResource& resource) { - DCHECK(content::BrowserThread::CurrentlyOn(content::BrowserThread::UI)); + DCHECK_CURRENTLY_ON(content::BrowserThread::UI); ui_manager->DisplayBlockingPage(resource); } |