diff options
Diffstat (limited to 'base/threading/thread_restrictions.cc')
-rw-r--r-- | base/threading/thread_restrictions.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/base/threading/thread_restrictions.cc b/base/threading/thread_restrictions.cc index a0c24b0..073349c 100644 --- a/base/threading/thread_restrictions.cc +++ b/base/threading/thread_restrictions.cc @@ -1,4 +1,4 @@ -// 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. @@ -16,10 +16,10 @@ namespace base { namespace { LazyInstance<ThreadLocalBoolean, LeakyLazyInstanceTraits<ThreadLocalBoolean> > - g_io_disallowed(LINKER_INITIALIZED); + g_io_disallowed = LAZY_INSTANCE_INITIALIZER; LazyInstance<ThreadLocalBoolean, LeakyLazyInstanceTraits<ThreadLocalBoolean> > - g_singleton_disallowed(LINKER_INITIALIZED); + g_singleton_disallowed = LAZY_INSTANCE_INITIALIZER; } // anonymous namespace |