| 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 3a0433b380db744a5acc548df565a4bda247303f..fa453178ca553301f2769358b140057d6e6bce05 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) {
|
| + permission::Status status) {
|
| switch (status) {
|
| - case PERMISSION_STATUS_GRANTED:
|
| + case permission::STATUS_GRANTED:
|
| return blink::WebNotificationPermissionAllowed;
|
| - case PERMISSION_STATUS_DENIED:
|
| + case permission::STATUS_DENIED:
|
| return blink::WebNotificationPermissionDenied;
|
| - case PERMISSION_STATUS_ASK:
|
| + case permission::STATUS_ASK:
|
| return blink::WebNotificationPermissionDefault;
|
| }
|
|
|
|
|