#ifndef CONTENT_TEST_MOCK_PLATFORM_NOTIFICATION_SERVICE_H_
#define CONTENT_TEST_MOCK_PLATFORM_NOTIFICATION_SERVICE_H_
#include <stdint.h>
#include <optional>
#include <string>
#include <unordered_map>
#include <unordered_set>
#include "base/functional/callback.h"
#include "base/memory/raw_ptr.h"
#include "content/public/browser/notification_database_data.h"
#include "content/public/browser/platform_notification_service.h"
#include "url/gurl.h"
namespace blink {
struct NotificationResources;
struct PlatformNotificationData;
}
namespace content {
class BrowserContext;
class MockPlatformNotificationService : public PlatformNotificationService { … };
}
#endif