diff -r 220a17280356 -r 1f3c3f2f5b0a webengine/widgetregistry/Server/src/WidgetRegistryXml.cpp --- a/webengine/widgetregistry/Server/src/WidgetRegistryXml.cpp Fri Mar 12 15:48:51 2010 +0200 +++ b/webengine/widgetregistry/Server/src/WidgetRegistryXml.cpp Mon Mar 15 12:44:50 2010 +0200 @@ -44,6 +44,8 @@ _LIT( KMiniViewEnabled, "MiniViewEnabled" ); _LIT( KBlanketPermGranted, "BlanketPermissionGranted" ); // optional _LIT( KPreInstalled, "PreInstalled" ); +_LIT( KProcessUid, "ProcessUid" ); +_LIT( KMimeType, "MimeType" ); static void XmlFree( TAny* aPtr ) { @@ -193,6 +195,16 @@ property.name.Set( KPreInstalled ); property.type = EWidgetPropTypeInt; iProperties.AppendL(property); + // + property.id = EProcessUid; + property.name.Set( KProcessUid ); + property.type = EWidgetPropTypeInt; // not TUid + iProperties.AppendL(property); + // + property.id = EMimeType; + property.name.Set( KMimeType ); + property.type = EWidgetPropTypeString; + iProperties.AppendL(property); } // ============================================================================