fix code cleanup with file property change
authorYoung Ik Cho <youngik.cho@samsung.com>
Sat, 6 Apr 2013 07:56:30 +0000 (16:56 +0900)
committerYoung Ik Cho <youngik.cho@samsung.com>
Sat, 6 Apr 2013 07:56:30 +0000 (16:56 +0900)
Change-Id: Ia0cf6a20c18a6b14fc46bd75f5b4cbe3c12153f4
Signed-off-by: Young Ik Cho <youngik.cho@samsung.com>
24 files changed:
src/app/FAppAppControl.cpp [changed mode: 0755->0644]
src/app/FApp_AppArg.cpp [changed mode: 0755->0644]
src/app/FApp_AppControlImpl.cpp [changed mode: 0755->0644]
src/app/FApp_AppControlManager.cpp [changed mode: 0755->0644]
src/app/FApp_AppControlRegistry.cpp
src/app/FApp_AppControlRegistry.h
src/app/FApp_AppLaunchConditionHandlerBase.cpp [changed mode: 0755->0644]
src/app/FApp_AppManagerImpl.cpp [changed mode: 0755->0644]
src/app/FApp_Aul.cpp [changed mode: 0755->0644]
src/app/FApp_ImeAppImpl.cpp [changed mode: 0755->0644]
src/app/FApp_PackageManagerProxy.cpp [changed mode: 0755->0644]
src/app/FApp_ServiceAppImpl.cpp [changed mode: 0755->0644]
src/app/inc/FAppPkg_PackageAppInfoImpl.h [changed mode: 0755->0644]
src/app/inc/FAppPkg_PackageInfoImpl.h [changed mode: 0755->0644]
src/app/inc/FAppPkg_PackageManagerImpl.h [changed mode: 0755->0644]
src/app/inc/FAppPkg_PackageParser.h [changed mode: 0755->0644]
src/app/inc/FApp_AppArg.h [changed mode: 0755->0644]
src/app/inc/FApp_AppControlImpl.h [changed mode: 0755->0644]
src/app/inc/FApp_AppControlManager.h [changed mode: 0755->0644]
src/app/inc/FApp_AppImpl.h [changed mode: 0755->0644]
src/app/inc/FApp_AppLaunchConditionHandlerBase.h [changed mode: 0755->0644]
src/app/inc/FApp_IAppLaunchConditionEventListener.h [changed mode: 0755->0644]
src/app/inc/FApp_PackageManagerIpcMessages.h [changed mode: 0755->0644]
src/app/inc/FApp_PackageManagerProxy.h [changed mode: 0755->0644]

old mode 100755 (executable)
new mode 100644 (file)
old mode 100755 (executable)
new mode 100644 (file)
old mode 100755 (executable)
new mode 100644 (file)
old mode 100755 (executable)
new mode 100644 (file)
index 5413239..e2b56bf 100644 (file)
@@ -84,8 +84,6 @@ _AppControlRegistry::_AppControlRegistry(void)
 
        __aliasList.Construct();
 
-       __aliasOperation.Construct();
-
        __aliasAppId.Construct();
 }
 
@@ -317,17 +315,6 @@ _AppControlRegistry::LoadLegacyList(void)
                                continue;
                        }
 
-                       bool b = false;
-                       __aliasOperation.ContainsKey(*pStr, b);
-                       if (b)
-                       {
-                               __aliasOperation.SetValue(*pStr, value);
-                       }
-                       else
-                       {
-                               __aliasOperation.Add(*pStr, value);
-                       }
-
                        // add entry to aliasList
                        _AppControlAliasEntry* pEntry = new (std::nothrow) _AppControlAliasEntry(secName, *pStr, aliasProvider, value);
                        SysTryReturnResult(NID_APP, pEntry != null, E_OUT_OF_MEMORY, "Insufficient memory.");
@@ -343,7 +330,7 @@ _AppControlRegistry::LoadLegacyList(void)
                delete pList;
        }
 
-       SysLog(NID_APP, "Finished loading %d entries with %d operation aliases.", __aliasList.GetCount(), __aliasOperation.GetCount());
+       SysLog(NID_APP, "Finished loading %d entries.", __aliasList.GetCount());
 
        return E_SUCCESS;
 }
@@ -625,22 +612,4 @@ _AppControlRegistry::GetReverseAliasAppId(const AppId& appId) const
        return L"";
 }
 
-String
-_AppControlRegistry::GetAliasedOperation(const String& operation) const
-{
-       bool b = false;
-       __aliasOperation.ContainsKey(operation, b);
-
-       if (b)
-       {
-               String tmp;
-               __aliasOperation.GetValue(operation, tmp);
-               return tmp;
-       }
-       else
-       {
-               return String();
-       }
-}
-
 } } // Tizen::App
index 12d9d33..4b6e447 100644 (file)
@@ -96,8 +96,6 @@ public:
 
        Tizen::Base::Collection::ArrayList* FindAppControlListN(const Tizen::Base::String* pOid, const Tizen::Base::String* pUri, const Tizen::Base::String* pMimeType, const Tizen::Base::String* pCategory) const;
 
-       Tizen::Base::String GetAliasedOperation(const Tizen::Base::String& operation) const;
-
        _AppControlAliasEntry* GetAppControlAliasEntry(const Tizen::Base::String& aId, const Tizen::Base::String& oId) const;
 
        _AppControlAliasEntry* GetReverseAppControlAliasEntry(const Tizen::Base::String& aId, const Tizen::Base::String& oId) const;
@@ -120,8 +118,6 @@ private:
 
        AppControlAliasList __aliasList;
 
-       AliasMapType __aliasOperation;
-
        AliasMapType __aliasAppId;
 
        static _AppControlRegistry* __pSelf;
old mode 100755 (executable)
new mode 100644 (file)
old mode 100755 (executable)
new mode 100644 (file)
old mode 100755 (executable)
new mode 100644 (file)
old mode 100755 (executable)
new mode 100644 (file)
old mode 100755 (executable)
new mode 100644 (file)
old mode 100755 (executable)
new mode 100644 (file)
old mode 100755 (executable)
new mode 100644 (file)
old mode 100755 (executable)
new mode 100644 (file)
old mode 100755 (executable)
new mode 100644 (file)
old mode 100755 (executable)
new mode 100644 (file)
old mode 100755 (executable)
new mode 100644 (file)
old mode 100755 (executable)
new mode 100644 (file)
old mode 100755 (executable)
new mode 100644 (file)
old mode 100755 (executable)
new mode 100644 (file)
old mode 100755 (executable)
new mode 100644 (file)
old mode 100755 (executable)
new mode 100644 (file)