| Index: content/public/browser/platform_notification_service.h
|
| diff --git a/content/public/browser/platform_notification_service.h b/content/public/browser/platform_notification_service.h
|
| index ba70b331a8f89a23fe79e07fe9c41c424c8a35b0..5abfb092cc315d1496ec0582aa0b049aee71b3ec 100644
|
| --- a/content/public/browser/platform_notification_service.h
|
| +++ b/content/public/browser/platform_notification_service.h
|
| @@ -13,8 +13,8 @@
|
| #include <vector>
|
|
|
| #include "base/callback_forward.h"
|
| +#include "components/permissions/permission_status.mojom.h"
|
| #include "content/common/content_export.h"
|
| -#include "third_party/WebKit/public/platform/modules/permissions/permission_status.mojom.h"
|
|
|
| class GURL;
|
|
|
| @@ -35,7 +35,7 @@ class CONTENT_EXPORT PlatformNotificationService {
|
|
|
| // Checks if |origin| has permission to display Web Notifications.
|
| // This method must only be called on the UI thread.
|
| - virtual blink::mojom::PermissionStatus CheckPermissionOnUIThread(
|
| + virtual permissions::mojom::PermissionStatus CheckPermissionOnUIThread(
|
| BrowserContext* browser_context,
|
| const GURL& origin,
|
| int render_process_id) = 0;
|
| @@ -45,7 +45,7 @@ class CONTENT_EXPORT PlatformNotificationService {
|
| // JavaScript getter, and should not be used for other purposes. See
|
| // https://crbug.com/446497 for the plan to deprecate this method.
|
| // This method must only be called on the IO thread.
|
| - virtual blink::mojom::PermissionStatus CheckPermissionOnIOThread(
|
| + virtual permissions::mojom::PermissionStatus CheckPermissionOnIOThread(
|
| ResourceContext* resource_context,
|
| const GURL& origin,
|
| int render_process_id) = 0;
|
|
|