From a87f6acb94746174423bd7765355e37101b3da85 Mon Sep 17 00:00:00 2001 From: Sunwook Bae Date: Tue, 30 Apr 2013 14:39:48 +0900 Subject: [PATCH] Remove _IpcServer::GetAppId Change-Id: I14e7abc7415b45e23b0301bafa338ada0685ce43 Signed-off-by: Sunwook Bae --- src/server/inc/FIo_IpcServer.h | 6 ------ src/server/io/FIo_IpcServer.cpp | 37 ------------------------------------- 2 files changed, 43 deletions(-) diff --git a/src/server/inc/FIo_IpcServer.h b/src/server/inc/FIo_IpcServer.h index 9482ffa..2c30c10 100644 --- a/src/server/inc/FIo_IpcServer.h +++ b/src/server/inc/FIo_IpcServer.h @@ -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. * diff --git a/src/server/io/FIo_IpcServer.cpp b/src/server/io/FIo_IpcServer.cpp index 324844f..d0453c0 100644 --- a/src/server/io/FIo_IpcServer.cpp +++ b/src/server/io/FIo_IpcServer.cpp @@ -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 { -- 2.7.4