From 158e41e578b8b3ed3a8c672a01b6dac7bd60f506 Mon Sep 17 00:00:00 2001 From: Samuel Attard Date: Thu, 21 Mar 2019 20:30:59 -0700 Subject: [PATCH] chore: add missing content:: namespace for BrowserContext in PlatformNotificationService --- atom/browser/notifications/platform_notification_service.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/atom/browser/notifications/platform_notification_service.cc b/atom/browser/notifications/platform_notification_service.cc index 447b1c697b40..68aba4d3fb1f 100644 --- a/atom/browser/notifications/platform_notification_service.cc +++ b/atom/browser/notifications/platform_notification_service.cc @@ -135,11 +135,11 @@ void PlatformNotificationService::RecordNotificationUkmEvent( const content::NotificationDatabaseData& data) {} void PlatformNotificationService::ScheduleTrigger( - BrowserContext* browser_context, + content::BrowserContext* browser_context, base::Time timestamp) {} base::Time PlatformNotificationService::ReadNextTriggerTimestamp( - BrowserContext* browser_context) { + content::BrowserContext* browser_context) { return base::Time::Max(); }