From d6d9c202b4d100436c6f7757d51cd783d46b566e Mon Sep 17 00:00:00 2001 From: MuHong Byun Date: Tue, 1 Jun 2021 15:14:08 +0900 Subject: [PATCH] Enable PlatformViewChannel method(resize) * This is necessary for webview resize. Signed-off-by: MuHong Byun --- shell/platform/tizen/channels/platform_view_channel.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell/platform/tizen/channels/platform_view_channel.cc b/shell/platform/tizen/channels/platform_view_channel.cc index ad534e9170234..3d8a02c40843c 100644 --- a/shell/platform/tizen/channels/platform_view_channel.cc +++ b/shell/platform/tizen/channels/platform_view_channel.cc @@ -215,7 +215,7 @@ void PlatformViewChannel::HandleMethodCall( double width = ExtractDoubleFromMap(arguments, "width"); double height = ExtractDoubleFromMap(arguments, "height"); it->second->Resize(width, height); - result->NotImplemented(); + result->Success(); } else if (method == "touch") { int type, button; double x, y, dx, dy;