From: Sangyoon Jang Date: Wed, 29 May 2019 10:05:16 +0000 (+0900) Subject: Fix namespace of StepCreateRecoveryFile X-Git-Tag: accepted/tizen/unified/20190626.064934~7 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F59%2F206959%2F7;p=platform%2Fcore%2Fappfw%2Fapp-installers.git Fix namespace of StepCreateRecoveryFile This step should be included at "recovery" namespace. Change-Id: Id12a75327641b3d75bdb35b5d132d3e9c436b54f Signed-off-by: Sangyoon Jang --- diff --git a/src/common/step/recovery/step_create_recovery_file.cc b/src/common/step/recovery/step_create_recovery_file.cc index 6495d65..62a2508 100644 --- a/src/common/step/recovery/step_create_recovery_file.cc +++ b/src/common/step/recovery/step_create_recovery_file.cc @@ -25,7 +25,7 @@ namespace bf = boost::filesystem; namespace common_installer { -namespace configuration { +namespace recovery { Step::Status StepCreateRecoveryFile::process() { std::string recovery_filename = context_->pkg_type.get() + "-recovery"; @@ -63,5 +63,5 @@ Step::Status StepCreateRecoveryFile::clean() { } -} // namespace configuration +} // namespace recovery } // namespace common_installer diff --git a/src/common/step/recovery/step_create_recovery_file.h b/src/common/step/recovery/step_create_recovery_file.h index b4fcdcb..b5ff833 100644 --- a/src/common/step/recovery/step_create_recovery_file.h +++ b/src/common/step/recovery/step_create_recovery_file.h @@ -13,7 +13,7 @@ #include "common/step/step.h" namespace common_installer { -namespace configuration { +namespace recovery { class StepCreateRecoveryFile : public Step { public: @@ -27,7 +27,7 @@ class StepCreateRecoveryFile : public Step { STEP_NAME(CreateRecoveryFile) }; -} // namespace configuration +} // namespace recovery } // namespace common_installer #endif // COMMON_STEP_RECOVERY_STEP_CREATE_RECOVERY_FILE_H_