Rename of Control Renderers to Visuals
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / controls / renderers / debug / debug-visual.h
@@ -19,7 +19,7 @@
  */
 
 // INTERNAL INCLUDES
-#include <dali-toolkit/internal/controls/renderers/control-renderer-impl.h>
+#include <dali-toolkit/internal/controls/renderers/visual-impl.h>
 
 namespace Dali
 {
@@ -34,31 +34,31 @@ namespace Internal
  * The renderer which renders a wireframe outline to the control's quad for debugging
  *
  */
-class DebugRenderer: public ControlRenderer
+class DebugVisual: public Visual
 {
 public:
 
   /**
    * @brief Constructor.
    *
-   * @param[in] factoryCache A pointer pointing to the RendererFactoryCache object
+   * @param[in] factoryCache A pointer pointing to the VisualFactoryCache object
    */
-  DebugRenderer( RendererFactoryCache& factoryCache );
+  DebugVisual( VisualFactoryCache& factoryCache );
 
   /**
    * @brief A reference counted object may only be deleted by calling Unreference().
    */
-  virtual ~DebugRenderer();
+  virtual ~DebugVisual();
 
 protected:
 
   /**
-   * @copydoc ControlRenderer::DoSetOnStage
+   * @copydoc Visual::DoSetOnStage
    */
   virtual void DoSetOnStage( Actor& actor );
 
   /**
-   * @copydoc ControlRenderer::CreatePropertyMap
+   * @copydoc Visual::CreatePropertyMap
    */
   virtual void DoCreatePropertyMap( Property::Map& map ) const;
 
@@ -78,10 +78,10 @@ private:
 private:
 
   // Undefined
-  DebugRenderer( const DebugRenderer& debugRenderer );
+  DebugVisual( const DebugVisual& debugRenderer );
 
   // Undefined
-  DebugRenderer& operator=( const DebugRenderer& debugRenderer );
+  DebugVisual& operator=( const DebugVisual& debugRenderer );
 
 };