diff --git a/shell/platform/tizen/channels/platform_channel.cc b/shell/platform/tizen/channels/platform_channel.cc index f136c47ad7a1e..9deb3a4ea255a 100644 --- a/shell/platform/tizen/channels/platform_channel.cc +++ b/shell/platform/tizen/channels/platform_channel.cc @@ -35,6 +35,8 @@ constexpr char kSetEnabledSystemUiOverlaysMethod[] = "SystemChrome.setEnabledSystemUIOverlays"; constexpr char kSetPreferredOrientationsMethod[] = "SystemChrome.setPreferredOrientations"; +constexpr char kSetSystemUIOverlayStyleMethod[] = + "SystemChrome.setSystemUIOverlayStyle"; constexpr char kTextKey[] = "text"; constexpr char kValueKey[] = "value"; @@ -127,9 +129,6 @@ void PlatformChannel::HandleMethodCall( } else if (method == kRestoreSystemUiOverlaysMethod) { RestoreSystemUiOverlays(); result->Success(); - } else if (method == kSetApplicationSwitcherDescriptionMethod) { - // Not supported on Tizen. Ignore. - result->Success(); } else if (method == kSetEnabledSystemUiOverlaysMethod) { const rapidjson::Document& list = arguments[0]; std::vector overlays; @@ -146,6 +145,10 @@ void PlatformChannel::HandleMethodCall( } SetPreferredOrientations(orientations); result->Success(); + } else if (method == kSetApplicationSwitcherDescriptionMethod || + method == kSetSystemUIOverlayStyleMethod) { + // Not supported on Tizen. Ignore. + result->Success(); } else { FT_LOG(Info) << "Unimplemented method: " << method; result->NotImplemented();