| Index: content/shell/browser/layout_test/layout_test_notification_manager.cc
|
| diff --git a/content/shell/browser/layout_test/layout_test_notification_manager.cc b/content/shell/browser/layout_test/layout_test_notification_manager.cc
|
| index 701b24b9fb6be227118e9e0cb4d2aac1f7b83c99..1ddb3a4fe4f6a9b0ef09fe6a7eac4b4ddc02aa99 100644
|
| --- a/content/shell/browser/layout_test/layout_test_notification_manager.cc
|
| +++ b/content/shell/browser/layout_test/layout_test_notification_manager.cc
|
| @@ -24,13 +24,13 @@ namespace {
|
| void OnEventDispatchComplete(PersistentNotificationStatus status) {}
|
|
|
| blink::WebNotificationPermission ToWebNotificationPermission(
|
| - PermissionStatus status) {
|
| + blink::mojom::PermissionStatus status) {
|
| switch (status) {
|
| - case PermissionStatus::GRANTED:
|
| + case blink::mojom::PermissionStatus::GRANTED:
|
| return blink::WebNotificationPermissionAllowed;
|
| - case PermissionStatus::DENIED:
|
| + case blink::mojom::PermissionStatus::DENIED:
|
| return blink::WebNotificationPermissionDenied;
|
| - case PermissionStatus::ASK:
|
| + case blink::mojom::PermissionStatus::ASK:
|
| return blink::WebNotificationPermissionDefault;
|
| }
|
|
|
|
|