Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "net/spdy/spdy_session_pool.h" | 5 #include "net/spdy/spdy_session_pool.h" |
| 6 | 6 |
| 7 #include <utility> | 7 #include <utility> |
| 8 | 8 |
| 9 #include "base/logging.h" | 9 #include "base/logging.h" |
| 10 #include "base/memory/ptr_util.h" | |
|
gab
2017/01/10 21:14:50
Fix includes in another CL?
fdoray
2017/01/11 14:09:06
Done.
| |
| 10 #include "base/metrics/histogram_macros.h" | 11 #include "base/metrics/histogram_macros.h" |
| 11 #include "base/profiler/scoped_tracker.h" | 12 #include "base/profiler/scoped_tracker.h" |
| 12 #include "base/stl_util.h" | 13 #include "base/stl_util.h" |
| 13 #include "base/strings/stringprintf.h" | 14 #include "base/strings/stringprintf.h" |
| 14 #include "base/trace_event/memory_allocator_dump.h" | 15 #include "base/trace_event/memory_allocator_dump.h" |
| 15 #include "base/trace_event/process_memory_dump.h" | 16 #include "base/trace_event/process_memory_dump.h" |
| 16 #include "base/trace_event/trace_event.h" | 17 #include "base/trace_event/trace_event.h" |
| 17 #include "base/values.h" | 18 #include "base/values.h" |
| 18 #include "net/base/address_list.h" | 19 #include "net/base/address_list.h" |
| 19 #include "net/base/trace_constants.h" | 20 #include "net/base/trace_constants.h" |
| (...skipping 424 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 444 | 445 |
| 445 if (idle_only && (*it)->is_active()) | 446 if (idle_only && (*it)->is_active()) |
| 446 continue; | 447 continue; |
| 447 | 448 |
| 448 (*it)->CloseSessionOnError(error, description); | 449 (*it)->CloseSessionOnError(error, description); |
| 449 DCHECK(!IsSessionAvailable(*it)); | 450 DCHECK(!IsSessionAvailable(*it)); |
| 450 } | 451 } |
| 451 } | 452 } |
| 452 | 453 |
| 453 } // namespace net | 454 } // namespace net |
| OLD | NEW |