Index: android_webview/browser/aw_content_browser_client.cc |
diff --git a/android_webview/browser/aw_content_browser_client.cc b/android_webview/browser/aw_content_browser_client.cc |
index 9181ce5df4954663973b7ba38fbe6e80a4dca65e..3a50f8c719d86439115544a11a7ed59e88a106f9 100644 |
--- a/android_webview/browser/aw_content_browser_client.cc |
+++ b/android_webview/browser/aw_content_browser_client.cc |
@@ -235,7 +235,7 @@ net::URLRequestContextGetter* AwContentBrowserClient::CreateRequestContext( |
content::BrowserContext* browser_context, |
content::ProtocolHandlerMap* protocol_handlers, |
content::URLRequestInterceptorScopedVector request_interceptors) { |
- DCHECK(browser_context_.get() == browser_context); |
+ DCHECK_EQ(browser_context_.get(), browser_context); |
return browser_context_->CreateRequestContext(protocol_handlers, |
request_interceptors.Pass()); |
} |
@@ -247,7 +247,7 @@ AwContentBrowserClient::CreateRequestContextForStoragePartition( |
bool in_memory, |
content::ProtocolHandlerMap* protocol_handlers, |
content::URLRequestInterceptorScopedVector request_interceptors) { |
- DCHECK(browser_context_.get() == browser_context); |
+ DCHECK_EQ(browser_context_.get(), browser_context); |
// TODO(mkosiba,kinuko): request_interceptors should be hooked up in the |
// downstream. (crbug.com/350286) |
return browser_context_->CreateRequestContextForStoragePartition( |