Fix namespace of StepCreateRecoveryFile 60/206960/4
authorSangyoon Jang <jeremy.jang@samsung.com>
Wed, 29 May 2019 10:07:15 +0000 (19:07 +0900)
committerSangyoon Jang <jeremy.jang@samsung.com>
Mon, 3 Jun 2019 06:48:25 +0000 (06:48 +0000)
Requires:
 - https://review.tizen.org/gerrit/c/platform/core/appfw/app-installers/+/206959

Change-Id: Ia36967a54acbc12a56883a1894a19abc1c1e5967
Signed-off-by: Sangyoon Jang <jeremy.jang@samsung.com>
src/tpk/tpk_installer.cc

index 8ebef6e1e97006af9cc9d0e3531dc23de64f63ff..c1221db19c11f6e92a65de0073fc42f9799205ec 100644 (file)
@@ -124,7 +124,7 @@ TpkInstaller::~TpkInstaller() {
 
 void TpkInstaller::InstallSteps() {
   AddStep<ci::configuration::StepConfigure>(pkgmgr_);
-  AddStep<ci::configuration::StepCreateRecoveryFile>();
+  AddStep<ci::recovery::StepCreateRecoveryFile>();
   AddStep<ci::filesystem::StepUnzip>();
   AddStep<ci::configuration::StepParseManifest>(
       ci::configuration::StepParseManifest::ManifestLocation::PACKAGE,
@@ -166,7 +166,7 @@ void TpkInstaller::InstallSteps() {
 
 void TpkInstaller::UpdateSteps() {
   AddStep<ci::configuration::StepConfigure>(pkgmgr_);
-  AddStep<ci::configuration::StepCreateRecoveryFile>();
+  AddStep<ci::recovery::StepCreateRecoveryFile>();
   AddStep<ci::filesystem::StepUnzip>();
   AddStep<ci::configuration::StepParseManifest>(
       ci::configuration::StepParseManifest::ManifestLocation::PACKAGE,
@@ -289,7 +289,7 @@ void TpkInstaller::ReinstallSteps() {
 
 void TpkInstaller::DeltaSteps() {
   AddStep<ci::configuration::StepConfigure>(pkgmgr_);
-  AddStep<ci::configuration::StepCreateRecoveryFile>();
+  AddStep<ci::recovery::StepCreateRecoveryFile>();
   AddStep<ci::filesystem::StepUnzip>();
   AddStep<ci::configuration::StepParseManifest>(
       ci::configuration::StepParseManifest::ManifestLocation::PACKAGE,
@@ -378,7 +378,7 @@ void TpkInstaller::RecoverySteps() {
 
 void TpkInstaller::MountInstallSteps() {
   AddStep<ci::configuration::StepConfigure>(pkgmgr_);
-  AddStep<ci::configuration::StepCreateRecoveryFile>();
+  AddStep<ci::recovery::StepCreateRecoveryFile>();
   AddStep<ci::mount::StepMountUnpacked>();
   AddStep<ci::configuration::StepParseManifest>(
       ci::configuration::StepParseManifest::ManifestLocation::PACKAGE,
@@ -420,7 +420,7 @@ void TpkInstaller::MountInstallSteps() {
 
 void TpkInstaller::MountUpdateSteps() {
   AddStep<ci::configuration::StepConfigure>(pkgmgr_);
-  AddStep<ci::configuration::StepCreateRecoveryFile>();
+  AddStep<ci::recovery::StepCreateRecoveryFile>();
   AddStep<ci::mount::StepMountUnpacked>();
   AddStep<ci::configuration::StepParseManifest>(
       ci::configuration::StepParseManifest::ManifestLocation::PACKAGE,
@@ -599,7 +599,7 @@ void TpkInstaller::PartialUninstallSteps() {
 
 void TpkInstaller::ReadonlyUpdateInstallSteps() {
   AddStep<ci::configuration::StepConfigure>(pkgmgr_);
-  AddStep<ci::configuration::StepCreateRecoveryFile>();
+  AddStep<ci::recovery::StepCreateRecoveryFile>();
   AddStep<ci::filesystem::StepUnzip>();
   AddStep<ci::configuration::StepParseManifest>(
       ci::configuration::StepParseManifest::ManifestLocation::PACKAGE,