| Index: third_party/WebKit/Source/modules/notifications/ServiceWorkerRegistrationNotifications.cpp
|
| diff --git a/third_party/WebKit/Source/modules/notifications/ServiceWorkerRegistrationNotifications.cpp b/third_party/WebKit/Source/modules/notifications/ServiceWorkerRegistrationNotifications.cpp
|
| index 5a322e7157ad088e1a7c0151b8669102a658d07d..47a5566a340bad62f9f1bd0e548821526b54c687 100644
|
| --- a/third_party/WebKit/Source/modules/notifications/ServiceWorkerRegistrationNotifications.cpp
|
| +++ b/third_party/WebKit/Source/modules/notifications/ServiceWorkerRegistrationNotifications.cpp
|
| @@ -63,7 +63,7 @@ ScriptPromise ServiceWorkerRegistrationNotifications::showNotification(ScriptSta
|
| return ScriptPromise::reject(scriptState, V8ThrowException::createTypeError(scriptState->isolate(), "No active registration available on the ServiceWorkerRegistration."));
|
|
|
| // If permission for notification's origin is not "granted", reject promise with a TypeError exception, and terminate these substeps.
|
| - if (Notification::checkPermission(executionContext) != WebNotificationPermissionAllowed)
|
| + if (Notification::checkPermission(executionContext) != mojom::PermissionStatus::GRANTED)
|
| return ScriptPromise::reject(scriptState, V8ThrowException::createTypeError(scriptState->isolate(), "No notification permission has been granted for this origin."));
|
|
|
| // Validate the developer-provided values to get a WebNotificationData object.
|
|
|