Home | History | Annotate | Download | only in base
      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 
      5 #include "base/observer_list_threadsafe.h"
      6 
      7 namespace base {
      8 namespace internal {
      9 
     10 LazyInstance<ThreadLocalPointer<
     11     const ObserverListThreadSafeBase::NotificationDataBase>>::Leaky
     12     ObserverListThreadSafeBase::tls_current_notification_ =
     13         LAZY_INSTANCE_INITIALIZER;
     14 
     15 }  // namespace internal
     16 }  // namespace base
     17