Skip to content

Commit c125616

Browse files
committed
Apply's review's comment
Signed-off-by: MuHong Byun <mh.byun@samsung.com>
1 parent b5b01b2 commit c125616

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

packages/webview_flutter/tizen/src/webview.cc

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -157,8 +157,9 @@ double ExtractDoubleFromMap(const flutter::EncodableValue& arguments,
157157

158158
WebView::WebView(flutter::PluginRegistrar* registrar, int viewId,
159159
flutter::TextureRegistrar* texture_registrar, double width,
160-
double height, flutter::EncodableMap& params, void* winHandle)
161-
: PlatformView(registrar, viewId, winHandle),
160+
double height, flutter::EncodableMap& params,
161+
void* platform_window)
162+
: PlatformView(registrar, viewId, platform_window),
162163
texture_registrar_(texture_registrar),
163164
webview_instance_(nullptr),
164165
width_(width),

packages/webview_flutter/tizen/src/webview.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class WebView : public PlatformView {
2727
public:
2828
WebView(flutter::PluginRegistrar* registrar, int viewId,
2929
flutter::TextureRegistrar* textureRegistrar, double width,
30-
double height, flutter::EncodableMap& params, void* winHandle);
30+
double height, flutter::EncodableMap& params, void* platform_window);
3131
~WebView();
3232
virtual void Dispose() override;
3333
virtual void Resize(double width, double height) override;

0 commit comments

Comments
 (0)