breadcrumb_util.h 563 B

1234567891011121314151617181920
  1. // Copyright 2021 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 COMPONENTS_BREADCRUMBS_CORE_BREADCRUMB_UTIL_H_
  5. #define COMPONENTS_BREADCRUMBS_CORE_BREADCRUMB_UTIL_H_
  6. namespace base {
  7. class TimeTicks;
  8. }
  9. namespace breadcrumbs {
  10. // Returns the time when breadcrumbs logging started, for use in calculating
  11. // breadcrumbs timestamps.
  12. base::TimeTicks GetStartTime();
  13. } // namespace breadcrumbs
  14. #endif // COMPONENTS_BREADCRUMBS_CORE_BREADCRUMB_UTIL_H_