// Copyright 2020 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef COMPONENTS_BREADCRUMBS_CORE_APPLICATION_BREADCRUMBS_LOGGER_H_ #define COMPONENTS_BREADCRUMBS_CORE_APPLICATION_BREADCRUMBS_LOGGER_H_ #include <memory> #include <string> #include "base/files/file_path.h" #include "base/functional/callback.h" #include "base/memory/memory_pressure_listener.h" #include "base/metrics/user_metrics.h" namespace base { class TimeTicks; } // namespace base namespace breadcrumbs { class BreadcrumbPersistentStorageManager; // Listens for and logs application-wide breadcrumb events to the // BreadcrumbManager. class ApplicationBreadcrumbsLogger { … }; } // namespace breadcrumbs #endif // COMPONENTS_BREADCRUMBS_CORE_APPLICATION_BREADCRUMBS_LOGGER_H_