Move BlockUpdate to ISharableWatch 26/227326/2
authorhyunho <hhstark.kang@samsung.com>
Wed, 11 Mar 2020 07:49:30 +0000 (16:49 +0900)
committerHyunho Kang <hhstark.kang@samsung.com>
Wed, 11 Mar 2020 08:12:05 +0000 (08:12 +0000)
Change-Id: Iba49a1b7d4502ce91b450ae52c81e277a95e0a10
Signed-off-by: hyunho <hhstark.kang@samsung.com>
watch-holder/src/sharable_watch_interface.hh
watch-holder/src/watch.hh

index 9327b08..a8b08f1 100644 (file)
@@ -34,6 +34,7 @@ class ISharableWatch {
   virtual int GetPid() const = 0;
   virtual tizen_base::Bundle GetExtra() = 0;
   virtual bool IsFaulted() = 0;
+  virtual void BlockUpdate(bool enable) = 0;
 };
 
 }  // namespace watch_holder
index 366dde3..61712bf 100644 (file)
@@ -61,7 +61,7 @@ class EXPORT_API Watch : private screen_connector::RemoteSurfaceEvas,
   int GetRid() const ;
   tizen_base::Bundle GetExtra() override;
   bool IsFaulted() override;
-  void BlockUpdate(bool enable);
+  void BlockUpdate(bool enable) override;
 
  private:
   friend class WatchHolder;