allocator_check.h 489 B

123456789101112131415161718
  1. // Copyright 2016 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. #ifndef BASE_ALLOCATOR_ALLOCATOR_ALLOCATOR_CHECK_H_
  5. #define BASE_ALLOCATOR_ALLOCATOR_ALLOCATOR_CHECK_H_
  6. #include "base/base_export.h"
  7. namespace base {
  8. namespace allocator {
  9. BASE_EXPORT bool IsAllocatorInitialized();
  10. } // namespace allocator
  11. } // namespace base
  12. #endif // BASE_ALLOCATOR_ALLOCATOR_ALLOCATOR_CHECK_H_