[Release] wrt-installer_0.1.114
[framework/web/wrt-installer.git] / src / jobs / widget_uninstall / task_remove_custom_handlers.cpp
index 3717d62..706ab03 100644 (file)
@@ -35,7 +35,9 @@ TaskRemoveCustomHandlers::TaskRemoveCustomHandlers(UninstallerContext& context)
     DPL::TaskDecl<TaskRemoveCustomHandlers>(this),
     m_context(context)
 {
+    AddStep(&TaskRemoveCustomHandlers::StartStep);
     AddStep(&TaskRemoveCustomHandlers::Step);
+    AddStep(&TaskRemoveCustomHandlers::EndStep);
 }
 
 void TaskRemoveCustomHandlers::Step()
@@ -51,5 +53,15 @@ void TaskRemoveCustomHandlers::Step()
     handlersDao.removeWidgetContentHandlers();
     CustomHandlerDB::Interface::detachDatabase();
 }
+
+void TaskRemoveCustomHandlers::StartStep()
+{
+    LogDebug("--------- <TaskRemoveCustomHandlers> : START ----------");
+}
+
+void TaskRemoveCustomHandlers::EndStep()
+{
+    LogDebug("--------- <TaskRemoveCustomHandlers> : END ----------");
+}
 } //namespace WidgetUninstall
 } //namespace Jobs