chromium/chrome/browser/ui/download/download_bubble_row_list_view_info.h

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

#ifndef CHROME_BROWSER_UI_DOWNLOAD_DOWNLOAD_BUBBLE_ROW_LIST_VIEW_INFO_H_
#define CHROME_BROWSER_UI_DOWNLOAD_DOWNLOAD_BUBBLE_ROW_LIST_VIEW_INFO_H_

#include <list>
#include <map>
#include <optional>

#include "chrome/browser/download/download_ui_model.h"
#include "chrome/browser/ui/download/download_bubble_row_view_info.h"
#include "components/offline_items_collection/core/offline_item.h"

// Interface for observers of changes to the list of downloads as a whole.
class DownloadBubbleRowListViewInfoObserver : public base::CheckedObserver {};

// Info class for DownloadBubbleRowListView
class DownloadBubbleRowListViewInfo
    : public DownloadBubbleInfo<DownloadBubbleRowListViewInfoObserver>,
      public DownloadBubbleRowViewInfoObserver {};

#endif  // CHROME_BROWSER_UI_DOWNLOAD_DOWNLOAD_BUBBLE_ROW_LIST_VIEW_INFO_H_