Revert "[Tizen] (Vector) Remove 'const' from GetLayerInfo method"
authorHeeyong Song <heeyong.song@samsung.com>
Tue, 12 Nov 2019 06:15:19 +0000 (15:15 +0900)
committerHeeyong Song <heeyong.song@samsung.com>
Tue, 12 Nov 2019 06:15:24 +0000 (15:15 +0900)
This reverts commit 54e44470680b30b99590f2d2ddaf75f676cc698f.

Change-Id: Icc019b6eaa72f15312812517af2de594672e63ef

dali/devel-api/adaptor-framework/vector-animation-renderer-plugin.h
dali/devel-api/adaptor-framework/vector-animation-renderer.cpp
dali/devel-api/adaptor-framework/vector-animation-renderer.h
dali/internal/vector-animation/common/vector-animation-renderer-impl.cpp
dali/internal/vector-animation/common/vector-animation-renderer-impl.h
dali/internal/vector-animation/common/vector-animation-renderer-plugin-proxy.cpp
dali/internal/vector-animation/common/vector-animation-renderer-plugin-proxy.h

index efcd011..a640f3c 100644 (file)
@@ -106,7 +106,7 @@ public:
    *
    * @param[out] map The layer information
    */
-  virtual void GetLayerInfo( Property::Map& map ) = 0;
+  virtual void GetLayerInfo( Property::Map& map ) const = 0;
 
   /**
    * @brief Connect to this signal to be notified when the texture upload is completed.
index 692b485..f55d839 100755 (executable)
@@ -89,7 +89,7 @@ void VectorAnimationRenderer::GetDefaultSize( uint32_t& width, uint32_t& height
   GetImplementation( *this ).GetDefaultSize( width, height );
 }
 
-void VectorAnimationRenderer::GetLayerInfo( Property::Map& map )
+void VectorAnimationRenderer::GetLayerInfo( Property::Map& map ) const
 {
   GetImplementation( *this ).GetLayerInfo( map );
 }
index 440670c..5db1122 100755 (executable)
@@ -134,7 +134,7 @@ public:
    *
    * @param[out] map The layer information
    */
-  void GetLayerInfo( Property::Map& map );
+  void GetLayerInfo( Property::Map& map ) const;
 
 public: // Signals
 
index 0ec3ef0..b1e3a17 100644 (file)
@@ -95,7 +95,7 @@ void VectorAnimationRenderer::GetDefaultSize( uint32_t& width, uint32_t& height
   mPlugin.GetDefaultSize( width, height );
 }
 
-void VectorAnimationRenderer::GetLayerInfo( Property::Map& map )
+void VectorAnimationRenderer::GetLayerInfo( Property::Map& map ) const
 {
   mPlugin.GetLayerInfo( map );
 }
index ef588e1..5ede97e 100755 (executable)
@@ -89,7 +89,7 @@ public:
   /**
    * @copydoc Dali::VectorAnimationRenderer::GetLayerInfo()
    */
-  void GetLayerInfo( Property::Map& map );
+  void GetLayerInfo( Property::Map& map ) const;
 
   /**
    * @copydoc Dali::VectorAnimationRenderer::UploadCompletedSignal()
index 721fedd..009312b 100644 (file)
@@ -161,7 +161,7 @@ void VectorAnimationRendererPluginProxy::GetDefaultSize( uint32_t& width, uint32
   }
 }
 
-void VectorAnimationRendererPluginProxy::GetLayerInfo( Property::Map& map )
+void VectorAnimationRendererPluginProxy::GetLayerInfo( Property::Map& map ) const
 {
   if( mPlugin )
   {
index 5b77b4c..17ba06b 100644 (file)
@@ -85,7 +85,7 @@ public:
   /**
    * @copydoc Dali::VectorAnimationRendererPlugin::GetLayerInfo()
    */
-  void GetLayerInfo( Property::Map& map );
+  void GetLayerInfo( Property::Map& map ) const;
 
   /**
    * @copydoc Dali::VectorAnimationRendererPlugin::UploadCompletedSignal()