// 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_DOWNLOAD_BUBBLE_DOWNLOAD_BUBBLE_DISPLAY_INFO_H_ #define CHROME_BROWSER_DOWNLOAD_BUBBLE_DOWNLOAD_BUBBLE_DISPLAY_INFO_H_ #include "base/time/time.h" // Summarizes information from DownloadUIModels to be displayed in the download // bubble. Produced by DownloadBubbleUpdateService by iterating through models, // which is somewhat expensive, so summarized information is stored in the form // of this struct. struct DownloadBubbleDisplayInfo { … }; #endif // CHROME_BROWSER_DOWNLOAD_BUBBLE_DOWNLOAD_BUBBLE_DISPLAY_INFO_H_