File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed
shell/platform/tizen/channels Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -29,6 +29,8 @@ constexpr char kHapticFeedbackVibrateMethod[] = "HapticFeedback.vibrate";
2929constexpr char kSystemNavigatorPopMethod [] = " SystemNavigator.pop" ;
3030constexpr char kRestoreSystemUiOverlaysMethod [] =
3131 " SystemChrome.restoreSystemUIOverlays" ;
32+ constexpr char kSetApplicationSwitcherDescriptionMethod [] =
33+ " SystemChrome.setApplicationSwitcherDescription" ;
3234constexpr char kSetEnabledSystemUiOverlaysMethod [] =
3335 " SystemChrome.setEnabledSystemUIOverlays" ;
3436constexpr char kSetPreferredOrientationsMethod [] =
@@ -125,6 +127,9 @@ void PlatformChannel::HandleMethodCall(
125127 } else if (method == kRestoreSystemUiOverlaysMethod ) {
126128 RestoreSystemUiOverlays ();
127129 result->Success ();
130+ } else if (method == kSetApplicationSwitcherDescriptionMethod ) {
131+ // Not supported on Tizen. Ignore.
132+ result->Success ();
128133 } else if (method == kSetEnabledSystemUiOverlaysMethod ) {
129134 const rapidjson::Document& list = arguments[0 ];
130135 std::vector<std::string> overlays;
You can’t perform that action at this time.
0 commit comments