diff options
Diffstat (limited to 'net/base/bandwidth_metrics.cc')
-rw-r--r-- | net/base/bandwidth_metrics.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/base/bandwidth_metrics.cc b/net/base/bandwidth_metrics.cc index fa23a77..0644122 100644 --- a/net/base/bandwidth_metrics.cc +++ b/net/base/bandwidth_metrics.cc @@ -1,12 +1,12 @@ -// Copyright (c) 2010 The Chromium Authors. All rights reserved. +// Copyright (c) 2011 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "base/lazy_instance.h" #include "net/base/bandwidth_metrics.h" -static base::LazyInstance<net::BandwidthMetrics> g_bandwidth_metrics( - base::LINKER_INITIALIZED); +static base::LazyInstance<net::BandwidthMetrics> g_bandwidth_metrics = + LAZY_INSTANCE_INITIALIZER; namespace net { |