chromium/components/download/internal/background_service/startup_status.cc

// Copyright 2017 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/download/internal/background_service/startup_status.h"

#include "base/check.h"

namespace download {

StartupStatus::StartupStatus() = default;
StartupStatus::~StartupStatus() = default;

void StartupStatus::Reset() {}

bool StartupStatus::Complete() const {}

bool StartupStatus::Ok() const {}

bool StartupStatus::Failed() const {}

}  // namespace download