Chromium Code Reviews| Index: net/base/net_log_util.cc |
| diff --git a/net/base/net_log_util.cc b/net/base/net_log_util.cc |
| index 75be128851425df39202c8ab91a839427e28904d..a623abfbfaeb5c9d99baeadd245a553b7aa58884 100644 |
| --- a/net/base/net_log_util.cc |
| +++ b/net/base/net_log_util.cc |
| @@ -537,7 +537,8 @@ NET_EXPORT void CreateNetLogEntriesForActiveObjects( |
| // May only be called on the context's thread. |
| DCHECK(context->CalledOnValidThread()); |
| // Contexts should all be using the same NetLog. |
| - DCHECK_EQ((*contexts.begin())->net_log(), context->net_log()); |
| + // TODO(mmenke) This DCHECK fails on Android. |
|
jeremyim
2015/01/28 22:12:04
Alternatively, this could be wrapped with
#if !de
|
| + // DCHECK_EQ((*contexts.begin())->net_log(), context->net_log()); |
|
mmenke
2015/01/30 15:17:14
Outputting requests from two different NetLogs (Or
jeremyim
2015/01/30 15:48:07
Done.
|
| for (const auto& request : *context->url_requests()) { |
| requests.push_back(request); |
| } |