// 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. #include "components/background_task_scheduler/task_info.h" namespace background_task { PeriodicInfo::PeriodicInfo() : … { … } PeriodicInfo::~PeriodicInfo() = default; OneOffInfo::OneOffInfo() : … { … } OneOffInfo::~OneOffInfo() = default; TaskInfo::TaskInfo(int task_id, const PeriodicInfo& timing_info) : … { … } TaskInfo::TaskInfo(int task_id, const OneOffInfo& timing_info) : … { … } TaskInfo::~TaskInfo() = default; } // namespace background_task