| Index: Source/modules/navigatorcontentutils/NavigatorContentUtils.cpp
|
| diff --git a/Source/modules/navigatorcontentutils/NavigatorContentUtils.cpp b/Source/modules/navigatorcontentutils/NavigatorContentUtils.cpp
|
| index d8be96d974d3e01c7c3da45e1b4a830547cdc55a..865e0f26b8f35bd6668eaab5349013288390a3f7 100644
|
| --- a/Source/modules/navigatorcontentutils/NavigatorContentUtils.cpp
|
| +++ b/Source/modules/navigatorcontentutils/NavigatorContentUtils.cpp
|
| @@ -155,9 +155,9 @@ void NavigatorContentUtils::registerProtocolHandler(Navigator* navigator, const
|
| #if ENABLE(CUSTOM_SCHEME_HANDLER)
|
| static String customHandlersStateString(const NavigatorContentUtilsClient::CustomHandlersState state)
|
| {
|
| - DEFINE_STATIC_LOCAL(const String, newHandler, (ASCIILiteral("new")));
|
| - DEFINE_STATIC_LOCAL(const String, registeredHandler, (ASCIILiteral("registered")));
|
| - DEFINE_STATIC_LOCAL(const String, declinedHandler, (ASCIILiteral("declined")));
|
| + DEFINE_STATIC_LOCAL(const String, newHandler, ("new"));
|
| + DEFINE_STATIC_LOCAL(const String, registeredHandler, ("registered"));
|
| + DEFINE_STATIC_LOCAL(const String, declinedHandler, ("declined"));
|
|
|
| switch (state) {
|
| case NavigatorContentUtilsClient::CustomHandlersNew:
|
|
|