add move request type at app-installers 55/66255/6
authorJunghyun Yeon <jungh.yeon@samsung.com>
Mon, 18 Apr 2016 06:03:32 +0000 (15:03 +0900)
committerJunghyun Yeon <jungh.yeon@samsung.com>
Tue, 17 May 2016 01:40:35 +0000 (18:40 -0700)
Change-Id: I52a024a804da5e66460b53435520f9c3230d46b6
Signed-off-by: Junghyun Yeon <jungh.yeon@samsung.com>
src/common/pkgmgr_interface.cc
src/common/request.h

index 223409f..8b331c7 100644 (file)
@@ -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;
index e97f578..fc67605 100644 (file)
@@ -20,6 +20,7 @@ enum class RequestType : int {
   Reinstall,
   Clear,
   Delta,
+  Move,
   Recovery,
   MountInstall,
   MountUpdate,