Remove _IpcServer::GetAppId
authorSunwook Bae <sunwook45.bae@samsung.com>
Tue, 30 Apr 2013 05:39:48 +0000 (14:39 +0900)
committerSunwook Bae <sunwook45.bae@samsung.com>
Tue, 30 Apr 2013 05:39:48 +0000 (14:39 +0900)
Change-Id: I14e7abc7415b45e23b0301bafa338ada0685ce43
Signed-off-by: Sunwook Bae <sunwook45.bae@samsung.com>
src/server/inc/FIo_IpcServer.h
src/server/io/FIo_IpcServer.cpp

index 9482ffa..2c30c10 100644 (file)
@@ -89,12 +89,6 @@ public:
         */
        int GetClientId(void) const;
 
-       int GetClientProcessId(void) const;
-
-       Tizen::Base::String GetClientAppId(void) const;
-
-       Tizen::Base::String GetClientAppExecutableName(void) const;
-
        /**
         * Returns the package id of the client which sent a request message.
         *
index 324844f..d0453c0 100644 (file)
@@ -384,43 +384,6 @@ _IpcServer::GetClientId(void) const
        return -1;
 }
 
-int
-_IpcServer::GetClientProcessId(void) const
-{
-       if (__pCurrentClientInfo)
-       {
-               return __pCurrentClientInfo->clientId;
-       }
-
-       return -1;
-}
-
-String
-_IpcServer::GetClientAppId(void) const
-{
-       static String nullString;
-
-       if (__pCurrentClientInfo)
-       {
-               return __pCurrentClientInfo->pkgId;
-       }
-
-       return nullString;
-}
-
-String
-_IpcServer::GetClientAppExecutableName(void) const
-{
-       static String nullString;
-
-       if (__pCurrentClientInfo)
-       {
-               return __pCurrentClientInfo->appExecutableName;
-       }
-
-       return nullString;
-}
-
 PackageId
 _IpcServer::GetClientPackageId(void) const
 {