Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 "base/singleton.h" | 5 #include "base/lazy_instance.h" |
| 6 #include "net/base/bandwidth_metrics.h" | 6 #include "net/base/bandwidth_metrics.h" |
| 7 | 7 |
| 8 static base::LazyInstance<net::BandwidthMetrics> g_bandwidth_metrics( | |
| 9 base::LINKER_INITIALIZED); | |
| 10 | |
| 8 namespace net { | 11 namespace net { |
| 9 | 12 |
| 10 ScopedBandwidthMetrics::ScopedBandwidthMetrics() | 13 ScopedBandwidthMetrics::ScopedBandwidthMetrics() |
| 11 : metrics_(Singleton<BandwidthMetrics>::get()), | 14 : metrics_(g_bandwidth_metrics.Pointer()), |
|
M-A Ruel
2010/12/10 14:52:18
I'm wondering about the usefulness of the metrics_
Satish
2010/12/10 15:04:57
I'll move the implementation of this class's metho
M-A Ruel
2010/12/10 15:09:42
Cool
Satish
2010/12/10 17:13:48
Done.
| |
| 12 started_(false) { | 15 started_(false) { |
| 13 } | 16 } |
| 14 | 17 |
| 15 } // namespace net | 18 } // namespace net |
| OLD | NEW |