chromium/content/public/browser/notification_resource_data.h

// 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.

#ifndef CONTENT_PUBLIC_BROWSER_NOTIFICATION_RESOURCE_DATA_H_
#define CONTENT_PUBLIC_BROWSER_NOTIFICATION_RESOURCE_DATA_H_

#include <string>

#include "content/common/content_export.h"
#include "third_party/blink/public/common/notifications/notification_resources.h"
#include "url/gurl.h"

namespace content {

// Contains the |resources| for a notification with |notification_id| and
// |origin|. Used to pass multiple resources to the PlatformNotificationContext.
struct CONTENT_EXPORT NotificationResourceData {};

}  // namespace content

#endif  // CONTENT_PUBLIC_BROWSER_NOTIFICATION_RESOURCE_DATA_H_