#ifndef CONTENT_PUBLIC_BROWSER_PLATFORM_NOTIFICATION_CONTEXT_H_
#define CONTENT_PUBLIC_BROWSER_PLATFORM_NOTIFICATION_CONTEXT_H_
#include <stdint.h>
#include <optional>
#include <string>
#include <vector>
#include "base/functional/callback.h"
#include "base/memory/ref_counted.h"
#include "content/public/browser/browser_thread.h"
#include "content/public/browser/notification_database_data.h"
#include "content/public/browser/notification_resource_data.h"
class GURL;
namespace blink {
struct NotificationResources;
}
namespace content {
class PlatformNotificationContext
: public base::RefCountedThreadSafe<PlatformNotificationContext,
BrowserThread::DeleteOnUIThread> { … };
}
#endif