[Release] wrt-installer_0.1.55
[framework/web/wrt-installer.git] / src / jobs / widget_install / task_certify.h
old mode 100755 (executable)
new mode 100644 (file)
index a818496..6c42853
@@ -28,8 +28,6 @@
 
 //WRT INCLUDES
 #include <dpl/task.h>
-#include <dpl/popup/popup_controller.h>
-#include <widget_install/widget_install_popup.h>
 
 class InstallerContext;
 
@@ -40,8 +38,7 @@ class SignatureData;
 namespace Jobs {
 namespace WidgetInstall {
 class TaskCertify :
-    public DPL::TaskDecl<TaskCertify>,
-    public WidgetInstallPopup
+    public DPL::TaskDecl<TaskCertify>
 {
   public:
     TaskCertify(InstallerContext &inCont);
@@ -52,22 +49,13 @@ class TaskCertify :
 
     //steps
     void stepSignature();
-    void stepWarningPopup();
-    void stepAuthorInfoPopup();
-    void stepWarningPopupAnswer();
-    void stepAuthorInfoPopupAnswer();
-    void StepDeletePopupWin();
+    void stepVerifyUpdate();
     void stepFinalize();
-    void createInstallPopup(PopupType type, const std::string &label);
 
-    void processDistributorSignature(const ValidationCore::SignatureData &data,
-            bool first);
+    void processDistributorSignature(const ValidationCore::SignatureData &data);
     void processAuthorSignature(const ValidationCore::SignatureData &data);
 
-    std::string createAuthorWidgetInfo() const;
-
     bool isTizenWebApp() const;
-
 };
 } //namespace WidgetInstall
 } //namespace Jobs