chromium/chrome/browser/metrics/shutdown_watcher_helper.cc

// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "chrome/browser/metrics/shutdown_watcher_helper.h"

#include "base/time/time.h"
#include "build/build_config.h"
#include "chrome/browser/metrics/thread_watcher_report_hang.h"
#include "chrome/common/channel_info.h"
#include "components/version_info/channel.h"

// TODO(crbug.com/40267942): This code is not related to the metrics
// infrastructure and should be moved to a new home.

// ShutdownWatcherHelper is not available on Android.
#if !BUILDFLAG(IS_ANDROID)

namespace {
base::TimeDelta GetPerChannelTimeout(base::TimeDelta duration) {}
}  // namespace

ShutdownWatcherHelper::ShutdownWatcherHelper() = default;

ShutdownWatcherHelper::~ShutdownWatcherHelper() {}

void ShutdownWatcherHelper::Arm(const base::TimeDelta& duration) {}

void ShutdownWatcherHelper::Alarm() {}

#endif  // !BUILDFLAG(IS_ANDROID)