From 51c40b7c0bd67589018d9be4fec830f5d01fc2df Mon Sep 17 00:00:00 2001 From: Boram Bae Date: Wed, 3 Aug 2022 13:14:27 +0900 Subject: [PATCH] Fix missing pure virtual function specifier Signed-off-by: Boram Bae --- shell/platform/tizen/tizen_window.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/shell/platform/tizen/tizen_window.h b/shell/platform/tizen/tizen_window.h index a8250da058097..2b78edb3c1a7b 100644 --- a/shell/platform/tizen/tizen_window.h +++ b/shell/platform/tizen/tizen_window.h @@ -19,11 +19,11 @@ class TizenWindow : public TizenViewBase { TizenWindow() = default; virtual ~TizenWindow() = default; - virtual void* GetWindowHandle(); + virtual void* GetWindowHandle() = 0; virtual int32_t GetRotation() = 0; - virtual void SetPreferredOrientations(const std::vector& rotations); + virtual void SetPreferredOrientations(const std::vector& rotations) = 0; virtual void* GetRenderTargetDisplay() = 0;