[4.0] Added const for IsVideoTextureSupported 31/157331/2
authortaeyoon0.lee <taeyoon0.lee@samsung.com>
Tue, 24 Oct 2017 07:40:31 +0000 (16:40 +0900)
committerTaeyoon Lee <taeyoon0.lee@samsung.com>
Fri, 27 Oct 2017 05:33:04 +0000 (05:33 +0000)
Change-Id: Id3e60c24224bc61fc8bd0ca66a5774467842e3ec

adaptors/common/video-player-impl.cpp
adaptors/common/video-player-impl.h
adaptors/devel-api/adaptor-framework/video-player-plugin.h
adaptors/devel-api/adaptor-framework/video-player.cpp
adaptors/devel-api/adaptor-framework/video-player.h

index 0807e2a..7a66095 100644 (file)
@@ -289,7 +289,7 @@ void VideoPlayer::Backward( int millisecond )
   }
 }
 
-bool VideoPlayer::IsVideoTextureSupported()
+bool VideoPlayer::IsVideoTextureSupported() const
 {
   if( mPlugin != NULL )
   {
index 498a761..eaaa2fb 100644 (file)
@@ -162,7 +162,7 @@ public:
   /**
    * @brief Dali::VideoPlayer::IsVideoTextureSupported()
    */
-  bool IsVideoTextureSupported();
+  bool IsVideoTextureSupported() const;
 
 private:
 
index 10a6d5d..f1c309b 100644 (file)
@@ -215,7 +215,7 @@ public:
    * @brief Checks whether the video texture is supported
    * @return True if supported, otherwise false.
    */
-  virtual bool IsVideoTextureSupported() = 0;
+  virtual bool IsVideoTextureSupported() const = 0;
 
 };
 
index 048a9f0..281ae39 100644 (file)
@@ -171,7 +171,7 @@ void VideoPlayer::Backward( int millisecond )
   GetImplementation( *this ).Backward( millisecond );
 }
 
-bool VideoPlayer::IsVideoTextureSupported()
+bool VideoPlayer::IsVideoTextureSupported() const
 {
   return GetImplementation( *this ).IsVideoTextureSupported();
 }
index c630c72..f548ab1 100644 (file)
@@ -245,7 +245,7 @@ public:
    * @brief Checks whether the video texture is supported
    * @return True if supported, otherwise false.
    */
-  bool IsVideoTextureSupported();
+  bool IsVideoTextureSupported() const;
 
 private: // Not intended for application developers