Index: Source/modules/notifications/Notification.cpp |
diff --git a/Source/modules/notifications/Notification.cpp b/Source/modules/notifications/Notification.cpp |
index 920b156b99993fb516ecc904f35bf0c6d97c4c95..742e6b7517f5fa90285c79f957aa4a0cadbea9ca 100644 |
--- a/Source/modules/notifications/Notification.cpp |
+++ b/Source/modules/notifications/Notification.cpp |
@@ -238,9 +238,9 @@ const String& Notification::permission(ScriptExecutionContext* context) |
const String& Notification::permissionString(NotificationClient::Permission permission) |
{ |
- DEFINE_STATIC_LOCAL(const String, allowedPermission, (ASCIILiteral("granted"))); |
- DEFINE_STATIC_LOCAL(const String, deniedPermission, (ASCIILiteral("denied"))); |
- DEFINE_STATIC_LOCAL(const String, defaultPermission, (ASCIILiteral("default"))); |
+ DEFINE_STATIC_LOCAL(const String, allowedPermission, ("granted")); |
+ DEFINE_STATIC_LOCAL(const String, deniedPermission, ("denied")); |
+ DEFINE_STATIC_LOCAL(const String, defaultPermission, ("default")); |
switch (permission) { |
case NotificationClient::PermissionAllowed: |