chromium/components/download/internal/common/all_download_event_notifier.cc

// Copyright 2019 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/public/common/all_download_event_notifier.h"
#include "base/memory/raw_ptr.h"
#include "base/observer_list.h"

namespace download {

AllDownloadEventNotifier::AllDownloadEventNotifier(
    SimpleDownloadManagerCoordinator* simple_download_manager_coordinator)
    :{}

AllDownloadEventNotifier::~AllDownloadEventNotifier() {}

void AllDownloadEventNotifier::AddObserver(Observer* observer) {}

void AllDownloadEventNotifier::RemoveObserver(Observer* observer) {}

void AllDownloadEventNotifier::OnDownloadsInitialized(
    bool active_downloads_only) {}

void AllDownloadEventNotifier::OnManagerGoingDown(
    SimpleDownloadManagerCoordinator* manager) {}

void AllDownloadEventNotifier::OnDownloadCreated(DownloadItem* item) {}

void AllDownloadEventNotifier::OnDownloadUpdated(DownloadItem* item) {}

void AllDownloadEventNotifier::OnDownloadOpened(DownloadItem* item) {}

void AllDownloadEventNotifier::OnDownloadRemoved(DownloadItem* item) {}

void AllDownloadEventNotifier::OnDownloadDestroyed(DownloadItem* item) {}

}  // namespace download