breadcrumb_util.cc 424 B

12345678910111213141516
  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. #include "components/breadcrumbs/core/breadcrumb_util.h"
  5. #include "base/time/time.h"
  6. namespace breadcrumbs {
  7. base::TimeTicks GetStartTime() {
  8. static base::TimeTicks start_time = base::TimeTicks::Now();
  9. return start_time;
  10. }
  11. } // namespace breadcrumbs