Revert "Support app:// for w3c privilege"
[framework/web/wrt-installer.git] / src / jobs / job_base.h
index 86e1746..c2ed1d8 100644 (file)
@@ -34,8 +34,7 @@ class JobProgressBase
   public:
     JobProgressBase() : m_progressFlag(false),
         m_progresPercent(0.0)
-    {
-    }
+    {}
 
     void SetProgressFlag(bool flag)
     {
@@ -57,7 +56,7 @@ class JobProgressBase
     }
 
     void UpdateProgress(T_InstallationStep step,
-            ProgressDescription const &description)
+                        ProgressDescription const &description)
     {
         m_progresPercent =
             ((static_cast<ProgressPercent>(step) + 1.0) /
@@ -72,13 +71,13 @@ class JobContextBase
   public:
     JobContextBase(const T_JobStruct& jobStruct) :
         m_jobStruct(jobStruct)
-    {
-    }
+    {}
 
     T_JobStruct getInstallerStruct() const
     {
         return m_jobStruct;
-    }                                                                  //TODO RENAME
+    }                                                                  //TODO
+                                                                       // RENAME
 
   protected:
     T_JobStruct m_jobStruct;
@@ -96,17 +95,15 @@ struct JobCallbacksBase
         finishedCallback(0),
         progressCallback(0),
         userParam(0)
-    {
-    }
+    {}
 
     JobCallbacksBase(T_finishedCb finished,
-            T_progressCb progress,
-            void *param) :
+                     T_progressCb progress,
+                     void *param) :
         finishedCallback(finished),
         progressCallback(progress),
         userParam(param)
-    {
-    }
+    {}
 };
 } //namespace Jobs