diff --git a/shell/platform/tizen/channels/platform_channel.cc b/shell/platform/tizen/channels/platform_channel.cc index 263108f214a3f..f136c47ad7a1e 100644 --- a/shell/platform/tizen/channels/platform_channel.cc +++ b/shell/platform/tizen/channels/platform_channel.cc @@ -29,6 +29,8 @@ constexpr char kHapticFeedbackVibrateMethod[] = "HapticFeedback.vibrate"; constexpr char kSystemNavigatorPopMethod[] = "SystemNavigator.pop"; constexpr char kRestoreSystemUiOverlaysMethod[] = "SystemChrome.restoreSystemUIOverlays"; +constexpr char kSetApplicationSwitcherDescriptionMethod[] = + "SystemChrome.setApplicationSwitcherDescription"; constexpr char kSetEnabledSystemUiOverlaysMethod[] = "SystemChrome.setEnabledSystemUIOverlays"; constexpr char kSetPreferredOrientationsMethod[] = @@ -125,6 +127,9 @@ 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;