observer_list_threadsafe.cc 492 B

12345678910111213141516
  1. // Copyright 2017 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. #include "base/observer_list_threadsafe.h"
  5. namespace base {
  6. namespace internal {
  7. LazyInstance<ThreadLocalPointer<
  8. const ObserverListThreadSafeBase::NotificationDataBase>>::Leaky
  9. ObserverListThreadSafeBase::tls_current_notification_ =
  10. LAZY_INSTANCE_INITIALIZER;
  11. } // namespace internal
  12. } // namespace base