From: Junghyun Yeon Date: Mon, 18 Apr 2016 06:03:32 +0000 (+0900) Subject: add move request type at app-installers X-Git-Tag: submit/tizen/20160518.002620~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=970d6acd5c03d592c1a85c584bd7d30d5130d471;p=platform%2Fcore%2Fappfw%2Fapp-installers.git add move request type at app-installers Change-Id: I52a024a804da5e66460b53435520f9c3230d46b6 Signed-off-by: Junghyun Yeon --- diff --git a/src/common/pkgmgr_interface.cc b/src/common/pkgmgr_interface.cc index 223409f..8b331c7 100644 --- a/src/common/pkgmgr_interface.cc +++ b/src/common/pkgmgr_interface.cc @@ -124,6 +124,8 @@ RequestType PkgMgrInterface::GetRequestType() const { return RequestType::Clear; case PKGMGR_REQ_RECOVER: return RequestType::Recovery; + case PKGMGR_REQ_MOVE: + return RequestType::Move; case PKGMGR_REQ_MANIFEST_DIRECT_INSTALL: if (!is_app_installed_) return RequestType::ManifestDirectInstall; diff --git a/src/common/request.h b/src/common/request.h index e97f578..fc67605 100644 --- a/src/common/request.h +++ b/src/common/request.h @@ -20,6 +20,7 @@ enum class RequestType : int { Reinstall, Clear, Delta, + Move, Recovery, MountInstall, MountUpdate,